diff options
author | Guido van Rossum <guido@python.org> | 2003-04-09 19:06:21 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 2003-04-09 19:06:21 (GMT) |
commit | a12fe4e81fa3221458e16225e76ec7b8a05820ee (patch) | |
tree | 05f9ba6e5dab68aa1627e340aa1b6f2437c8e302 /Misc/NEWS | |
parent | 12dd7b12c6bce882a7e789173760abab62c80304 (diff) | |
download | cpython-a12fe4e81fa3221458e16225e76ec7b8a05820ee.zip cpython-a12fe4e81fa3221458e16225e76ec7b8a05820ee.tar.gz cpython-a12fe4e81fa3221458e16225e76ec7b8a05820ee.tar.bz2 |
- New function sys.call_tracing() allows pdb to debug code
recursively.
- pdb has a new command, "debug", which lets you step through
arbitrary code from the debugger's (pdb) prompt.
Diffstat (limited to 'Misc/NEWS')
-rw-r--r-- | Misc/NEWS | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -49,6 +49,9 @@ Core and builtins Extension modules ----------------- +- New function sys.call_tracing() allows pdb to debug code + recursively. + - New function gc.get_referents(obj) returns a list of objects directly referenced by obj. In effect, it exposes what the object's tp_traverse slot does, and can be helpful when debugging memory @@ -86,6 +89,9 @@ Extension modules Library ------- +- pdb has a new command, "debug", which lets you step through + arbitrary code from the debugger's (pdb) prompt. + - unittest.failUnlessEqual and its equivalent unittest.assertEqual now return 'not a == b' rather than 'a != b'. This gives the desired result for classes that define __eq__ without defining __ne__. |