Code import

This commit is contained in:
Jan Groß
2017-07-20 18:02:16 +02:00
parent 2ab406905d
commit 5c348ffe84
1807 changed files with 257494 additions and 0 deletions

View File

@@ -0,0 +1,22 @@
from eventlet import patcher
from eventlet.green import socket
from eventlet.support import six
to_patch = [('socket', socket)]
try:
from eventlet.green import ssl
to_patch.append(('ssl', ssl))
except ImportError:
pass
if six.PY2:
patcher.inject('httplib', globals(), *to_patch)
if six.PY3:
from eventlet.green.http import client
for name in dir(client):
if name not in patcher.__exclude:
globals()[name] = getattr(client, name)
if __name__ == '__main__':
test()