Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

14 lignes
307B

  1. from eventlet import patcher
  2. # *NOTE: there might be some funny business with the "SOCKS" module
  3. # if it even still exists
  4. from eventlet.green import socket
  5. patcher.inject('ftplib', globals(), ('socket', socket))
  6. del patcher
  7. # Run test program when run as a script
  8. if __name__ == '__main__':
  9. test()