You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
307 B
13 lines
307 B
from eventlet import patcher
|
|
|
|
# *NOTE: there might be some funny business with the "SOCKS" module
|
|
# if it even still exists
|
|
from eventlet.green import socket
|
|
|
|
patcher.inject('ftplib', globals(), ('socket', socket))
|
|
|
|
del patcher
|
|
|
|
# Run test program when run as a script
|
|
if __name__ == '__main__':
|
|
test()
|
|
|