Spencer Phillip Young
Spencer Phillip Young
Well. Actually as it turns out this is a syntax error 😳 TIL.
Potentially, `__call__` could work like an alias of sorts for getattr. Something like `__call__=lambda s,a: getattr(s,str(a))` The `str` would allow support for things like Ellipses. Maybe an equivalent `__setitem__` to...
If you configure containers to swap, that should prevent OOM kill. You might also consider using task limits, instead of container limits. The OOM kill behavior is dependent on aspects...
In Fargate, you're required to set the task size (the hard limit) and you cannot overcommit resources (the container will be killed by the kernel) [As stated](https://aws.amazon.com/blogs/containers/how-amazon-ecs-manages-cpu-and-memory-resources/): > The deployment...
It looks like you're trying to use `grequests` in combination with some kind of webserver. **Fundamentally, your problem is compatibility with `gevent`** `grequests` relies on `gevent` and uses monkey-patching to...
Thanks for raising this issue. Right now, `pyclip` supports a narrow set of clipboard formats. Essentially, just text formats and hdrop (file copy/paste). It seems you have copied and subsequently...
Probably should do something like what the MacOS variant does: https://github.com/spyoungtech/pyclip/blob/75bbe626ddcdcbaf60d42a94f4e44c0183bbe9ea/pyclip/macos_clip.py#L117-L122
It is possible to [enumerate available formats](https://github.com/spyoungtech/pyclip/blob/75bbe626ddcdcbaf60d42a94f4e44c0183bbe9ea/pyclip/win_clip.py#L95-L107) on Windows. You could check that against the known [string formats](https://github.com/spyoungtech/pyclip/blob/75bbe626ddcdcbaf60d42a94f4e44c0183bbe9ea/pyclip/win_clip.py#L121) to determine if a text format is available. One important thing to...
Thanks for the report. I've registered the corresponding domains and the links will work, eventually :) There's currently still a lot of things _not quite_ in place yet, especially with...
@dimmv2 yes, bug reports will be accepted. As bug fixes and other enhancements become available, they will be published in new versions. This is a fully supported fork, not just...