PyCrypto binaries -- nearly there..
| Newsgroups | gmane.comp.python.windows-ce |
|---|---|
| Message-ID | <[email protected]> |
I will try to run paramiko+pycrypto myself, i strongly suspect
paramiko to call sys.exit on some condition, so in the meantime you
can try to insert this in the beginning of your code (before any other
import):
import sys
class ExitError(Exception):
pass
def dummy_exit(code=0):
raise ExitError()
sys.exit = dummy_exit
and see if it raises an exception instead of quitting, then you can
track-down the source to locate the condition ...
I'm not sure if it will help, but it may be worth trying.
Alexandre.