[Python-checkins] CVS: python/dist/src/Misc cheatsheet,1.1,1.2

A.M. Kuchling akuchling@users.sourceforge.net
Mon, 06 Aug 2001 10:43:51 -0700


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

Modified Files:
	cheatsheet 
Log Message:
Update cheatsheet to 2.0 from Brunning/Gruet's quick reference


Index: cheatsheet
===================================================================
RCS file: /cvsroot/python/python/dist/src/Misc/cheatsheet,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** cheatsheet	1994/08/05 15:57:31	1.1
--- cheatsheet	2001/08/06 17:43:49	1.2
***************
*** 1,541 ****
!  			  A Python Bestiary
! 		 Itemizing Python Objects and Nuances
  
-    $Revision$ $Date$ 	ken.manheimer@nist.gov
  
-   			   Notable lexical entities
- 			   ========================
  
!     Keywords
  
[...2730 lines suppressed...]
!          4     def run():
!          5         global r
!          6         r = 0
!          7         x = div(3)
!          8         print x
! [EOF]
! (Pdb) print r
! 0
! (Pdb) q
! >>> pdb.runcall(rm.run)
! etc.
! 
! Quirks
! 
! Breakpoints are stored as filename, line number tuples. If a module is reloaded
! after editing, any remembered breakpoints are likely to be wrong.
! 
! Always single-steps through top-most stack frame. That is, "c" acts like "n".
! 
!