[pypy-svn] pypy jitypes2: remove "nested" pdb call, it makes sense only with pdb++

antocuni commits-noreply at bitbucket.org
Wed Jan 26 14:56:22 CET 2011


Author: Antonio Cuni <anto.cuni at gmail.com>
Branch: jitypes2
Changeset: r41349:aaa45cd1f44b
Date: 2011-01-26 11:51 +0100
http://bitbucket.org/pypy/pypy/changeset/aaa45cd1f44b/

Log:	remove "nested" pdb call, it makes sense only with pdb++

diff --git a/lib-python/modified-2.7.0/test/test_support.py b/lib-python/modified-2.7.0/test/test_support.py
--- a/lib-python/modified-2.7.0/test/test_support.py
+++ b/lib-python/modified-2.7.0/test/test_support.py
@@ -1066,7 +1066,7 @@
         if '--pdb' in sys.argv:
             import pdb, traceback
             traceback.print_tb(exc_info[2])
-            pdb.pdb.post_mortem(exc_info[2])
+            pdb.post_mortem(exc_info[2])
 
 # ----------------------------------
 


More information about the Pypy-commit mailing list