diff options
author | Antonio Cuni <anto.cuni@gmail.com> | 2011-01-26 11:51:52 +0100 |
---|---|---|
committer | Antonio Cuni <anto.cuni@gmail.com> | 2011-01-26 11:51:52 +0100 |
commit | a55b6eea249d706b1ab0078a591ace9165726fee (patch) | |
tree | f0e11f1cf70b0261b311ebeb23782f82c98ca176 /lib-python | |
parent | a failing test (diff) | |
download | pypy-a55b6eea249d706b1ab0078a591ace9165726fee.tar.gz pypy-a55b6eea249d706b1ab0078a591ace9165726fee.tar.bz2 pypy-a55b6eea249d706b1ab0078a591ace9165726fee.zip |
remove "nested" pdb call, it makes sense only with pdb++
Diffstat (limited to 'lib-python')
-rw-r--r-- | lib-python/modified-2.7.0/test/test_support.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib-python/modified-2.7.0/test/test_support.py b/lib-python/modified-2.7.0/test/test_support.py index 0a6c4713eb..ada84b40a6 100644 --- 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 @@ class TestResultWithPdb(ResultClass): 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]) # ---------------------------------- |