John Belmonte

Results 106 issues of John Belmonte

Currently there doesn't seem to be a way to include all methods of a certain class. possible now: include everything in a module (`:*`), include methods of any class with...

cinder-jit

The example below is fairly straightforward, and gets about 20x speedup under numba. If I understand correctly, numba achieves that by accessing the numpy C API directly from jitted code,...

* --reconnect option will silently retry (on the initially connected port) * only show received/send backtrace if --develop * exit with code 1 when there is an error Fixes #558...

miniterm

**Is your feature request related to a problem? Please describe.** In the Victoria Metrics development process, often the reporter of a bug or feature request is asked to verify the...

enhancement
help wanted

``` Looking in indexes: https://pypi.org/simple ... Collecting asks==3.0.0 Downloading asks-3.0.0.tar.gz (23 kB) Preparing metadata (setup.py) ... done ... Using legacy 'setup.py install' for asks, since package 'wheel' is not installed....

anyio 3.x does not support curio, hence asks doesn't these refs should be removed https://github.com/theelous3/asks/search?q=curio&type=code

```python import asks import trio asks.init('trio') async def main(): await asks.get('example.com') trio.run(main) ``` I was expecting something from asks.errors but got the following. It's really an implementation detail that there...

in request(): ``` sock = await timeout_manager( connection_timeout, self._grab_connection, url) ``` so this is establishing a connection, not making the request. Yet timeout_manager() will raise RequestTimeout. Overall it would be...

My Trio app is making simple, periodic (persistent connection), non-SSL get requests for content of ~200K. I noticed high CPU use due to this request and confirmed with a sampling...

TLDR; don't use skip lists I've found that a sorted list implemented with standard list + bisect module will be faster for tracking median than rolling's implementation up to about...

enhancement