- 18 Jul, 2018 1 commit
-
-
Jason Madden authored
-
- 16 Jul, 2018 2 commits
-
-
Jason Madden authored
[skip ci]
-
Jason Madden authored
[skip ci]
-
- 13 Jul, 2018 1 commit
-
-
Jason Madden authored
Enable 3.7 on appveyor.
-
- 12 Jul, 2018 22 commits
-
-
Jason Madden authored
-
Jason Madden authored
-
Jason Madden authored
-
Jason Madden authored
-
Jason Madden authored
-
Jason Madden authored
See https://github.com/python/cpython/commit/b2a6083eb0384f38839d3f1ed32262a3852026fa Also add some things missing from __all__ on Windows 3.7.
-
Jason Madden authored
-
Jason Madden authored
-
Jason Madden authored
Because it fails to cleanup a thread for some reason.
-
Jason Madden authored
-
Jason Madden authored
Update to libuv 1.22
-
Jason Madden authored
Don't pass the port when calling getaddrinfo from socket.connect.
-
Jason Madden authored
Also only attempt to resolve the address when we are AF_INET or AF_INET6; previously all other tuple address families would have been passed to getaddrinfo where they probably failed.
-
Jason Madden authored
-
Jason Madden authored
-
Jason Madden authored
Monkey-patch queue.SimpleQueue to be queue._PySimpleQueue.
-
Jason Madden authored
-
Jason Madden authored
-
Jason Madden authored
-
Jason Madden authored
-
Jason Madden authored
-
Jason Madden authored
-
- 11 Jul, 2018 2 commits
-
-
Jason Madden authored
-
Jason Madden authored
-
- 20 Jun, 2018 2 commits
-
-
Jason Madden authored
[skip ci]
-
Jason Madden authored
[skip ci]
-
- 18 Jun, 2018 6 commits
-
-
Jason Madden authored
Use bytearray += instead of bytearray.extend
-
Jason Madden authored
-
Jason Madden authored
-
Jason Madden authored
travis seems to be stuck building a missing commit, hopefully this frees it.
-
Jason Madden authored
This compiles to fewer bytecodes and uses built-in slots instead of method dispatch, so it should be faster. Benchmarks show a tiny improvement (using the same benchmarks as issue #1233, so not exactly designed to test this): RPS +------+------+-------+ |Size |master|+= | +------+------+-------+ |1 |5.60 | 5.63 | +------+------+-------+ | 10 |5.49 | 5.53 | +------+------+-------+ | 100 |4.99 | 5.00| +------+------+-------+ | 1000|3.53 | 3.57| +------+------+-------+
-
Jason Madden authored
Use a buffer to generate HTTP chunks.
-
- 16 Jun, 2018 1 commit
-
-
Jason Madden authored
The intent is to reduce network overhead for small chunk sizes withoud adding much overhead for larger sizes. Fixes #1233.
-
- 15 Jun, 2018 2 commits
-
-
Jason Madden authored
Only issue the ssl MonkeyPatchWarning if we can be pretty sure there will be problems
-
Jason Madden authored
This increases the false negative chances, but decreases the false positives substantially.
-
- 10 Jun, 2018 1 commit
-
-
Jason Madden authored
Fix a typo in pywsgi.py [skip ci]
-