[Python-checkins] r85696 - python/branches/py3k/Lib/trace.py

alexander.belopolsky python-checkins at python.org
Mon Oct 18 17:11:34 CEST 2010


Author: alexander.belopolsky
Date: Mon Oct 18 17:11:33 2010
New Revision: 85696

Log:
Reverted inadvertent change that slipped into r85695

Modified:
   python/branches/py3k/Lib/trace.py

Modified: python/branches/py3k/Lib/trace.py
==============================================================================
--- python/branches/py3k/Lib/trace.py	(original)
+++ python/branches/py3k/Lib/trace.py	Mon Oct 18 17:11:33 2010
@@ -493,7 +493,6 @@
             threading.settrace(self.globaltrace)
             sys.settrace(self.globaltrace)
         try:
-            del sys.modules['pickle']
             exec(cmd, globals, locals)
         finally:
             if not self.donothing:


More information about the Python-checkins mailing list