| Commit message (Collapse) | Author | Age | Files | Lines |
| |
|
|
|
|
|
|
|
|
|
|
|
| |
Output compatibe with golang.org/x/tools/cmd/benchcmp
which allows easy automated performance comparison.
Usage:
- git checkout -b newbranch
- change code
- bin/bench-compare -python ./venv-27
- bin/bench-compare -python ./venv-36
- copy benchmark results
- git commit, include benchmark results
|
| |
|
|
| |
installation and development
|
| | |
|
| |
|
|
| |
https://github.com/eventlet/eventlet/issues/427
|
| |
|
|
| |
https://github.com/eventlet/eventlet/issues/403
|
| |
|
|
|
|
|
|
|
|
| |
Podoliaka and Victor Stinner
eventlet/support/monotonic.py is copied by curl from specific version on Github.
Change and run bin/pull-monotonic script to update to newer version.
https://github.com/eventlet/eventlet/pull/388
https://github.com/eventlet/eventlet/pull/303
|
| | |
|
| | |
|
| |
|
|
|
|
|
|
|
|
|
| |
import errors
Allows to read package version without installing dependencies.
```
import eventlet
print(eventlet.__version__) # ok
eventlet.sleep() # error
```
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
The version introduced in commit [1] ([2]) has a major bug - "The DNS
resolver doesn't return any records and under some circumstances throws
KeyError exceptions from within dnspython" [3]. dnspython commit [4]
fixes it so let's update to the latest development version.
Simple script to reproduce:
import eventlet
eventlet.monkey_patch(all=True)
import socket
print(socket.gethostbyname('google.co.uk'))
Before this change it'd raise an exception, after - it produces
a result.
[1] 52b09becacd23f384cf69ae37d70c893c43e3b13
[2] https://github.com/rthalley/dnspython/commit/188aa701a6826c607da0624e31a8c4618d0a8017
[3] https://github.com/rthalley/dnspython/issues/206
[4] https://github.com/rthalley/dnspython/commit/292995db18f16a528471250fab5cb25082b7d193
|
| |
|
|
|
| |
Fixes installation issue when older dnspython is present in system packages
https://github.com/eventlet/eventlet/pull/341
|
| | |
|
| | |
|
| | |
|
| | |
|
| | |
|
| |
|