[Python-checkins] python/dist/src/Misc NEWS,1.716,1.717

gvanrossum@users.sourceforge.net gvanrossum@users.sourceforge.net
Wed, 09 Apr 2003 12:06:49 -0700


Update of /cvsroot/python/python/dist/src/Misc
In directory sc8-pr-cvs1:/tmp/cvs-serv20970/Misc

Modified Files:
	NEWS 
Log Message:
- 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.


Index: NEWS
===================================================================
RCS file: /cvsroot/python/python/dist/src/Misc/NEWS,v
retrieving revision 1.716
retrieving revision 1.717
diff -C2 -d -r1.716 -r1.717
*** NEWS	8 Apr 2003 17:17:16 -0000	1.716
--- NEWS	9 Apr 2003 19:06:11 -0000	1.717
***************
*** 50,53 ****
--- 50,56 ----
  -----------------
  
+ - 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
***************
*** 86,89 ****
--- 89,95 ----
  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