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,15 @@
from eventlet import patcher
from eventlet.green import socket
from eventlet.green import select
from eventlet.green import threading
from eventlet.support import six
patcher.inject(
'SocketServer' if six.PY2 else 'socketserver',
globals(),
('socket', socket),
('select', select),
('threading', threading))
# QQQ ForkingMixIn should be fixed to use green waitpid?