Andrew Svetlov
Andrew Svetlov
Implementation for generic badges as discussed in #120
Like here: https://github.com/aio-libs/multidict in README.rst It should be managed by configuration like travis and codecov buttons. I would love pypi version and supported python versions badges too. What do you...
accept `pathlib.Path` as filename etc.
For giving async API for *file discriptor*. Like https://docs.python.org/3/library/os.html#os.fdopen If you like the idea I could make a patch.
`URL('path/to').with_scheme('http')` should work. Now it produces `scheme replacement is not allowed for relative URLs`
Now it is relative which is confusing
The library uses a parser from stdlib. It works but the implementation is not as fast as possible. I've added tests for parser already. The plan is: 1. Implement a...
The target is `URL.build` optimization. The method is crucial for aiohttp web server, avoiding `SplitResult` construction can make the method faster. `SplitResult` could be restored in every method that need...
1. Store source traceback in debug mode like https://github.com/KeepSafe/aiohttp/blob/master/aiohttp/client.py#L50 2. Report about resource leak like https://github.com/KeepSafe/aiohttp/blob/master/aiohttp/client.py#L84
Don't pass ssl certivicate error to loop.call_exception_handler() Handle ssl.CertificateError only because ssl.SSLError may be raised not only on connection establishment. @1st1 please take a look