- 12 Jul, 2018 18 commits
-
-
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 2 commits
-
-
Jason Madden authored
Fix a typo in pywsgi.py [skip ci]
-
Felix Yan authored
-
- 08 Jun, 2018 2 commits
-
-
Jason Madden authored
[skip ci]
-
Jason Madden authored
[skip ci]
-
- 07 Jun, 2018 1 commit
-
-
Jason Madden authored
Fixes #1236
-
- 04 Jun, 2018 1 commit
-
-
Jason Madden authored
[skip ci]
-
- 02 Jun, 2018 1 commit
-
-
Jason Madden authored
-
- 31 May, 2018 2 commits
-
-
Jason Madden authored
* Switch off prospector, go back to plain pylint. prospector wasn't working on CI for some reason. Fix the outstanding pylint errors. * Explicitly request pylint 2 on Python 3 * Also need to update astroid. * pylint warning generated on Travis (case-sensitive filesystem.)
-
Jason Madden authored
* Sleeping updates the loop's current time always. That had been disabled for libuv, but now that we run timers in our own code that's not a concern anymore. Fixes #1227. * Try Python 3.5.5 because of the weird Illegal Instruction crash we suddenly see with 3.5.4 * Increase the value; test_sendall_timeout was often failing to actually timeout. * Really python3.5
-