[Python-checkins] python/nondist/sandbox/pickletools pickletools.py,1.24,1.25

tim_one@users.sourceforge.net tim_one@users.sourceforge.net
Sun, 26 Jan 2003 12:04:41 -0800


Update of /cvsroot/python/python/nondist/sandbox/pickletools
In directory sc8-pr-cvs1:/tmp/cvs-serv20402

Modified Files:
	pickletools.py 
Log Message:
Typo repair.


Index: pickletools.py
===================================================================
RCS file: /cvsroot/python/python/nondist/sandbox/pickletools/pickletools.py,v
retrieving revision 1.24
retrieving revision 1.25
diff -C2 -d -r1.24 -r1.25
*** pickletools.py	26 Jan 2003 19:34:17 -0000	1.24
--- pickletools.py	26 Jan 2003 20:04:35 -0000	1.25
***************
*** 1371,1376 ****
          """pickle is a file-like object containing a pickle bytestream.
  
!         Inovoking walk() traverses the pickle, calling visit() for each
!         opcode encouterned, then calling done() once at the end.  Subclasses
          will want to override visit(), and possibly done().  The default
          implementations do nothing.
--- 1371,1376 ----
          """pickle is a file-like object containing a pickle bytestream.
  
!         Invoking walk() traverses the pickle, calling visit() for each
!         opcode encountered, then calling done() once at the end.  Subclasses
          will want to override visit(), and possibly done().  The default
          implementations do nothing.
***************
*** 1448,1452 ****
          if pos is not None:
              print >> out, "%5d:" % pos,
!         print opcode.code,
          if arg is None:
              print >> out, opcode.name
--- 1448,1452 ----
          if pos is not None:
              print >> out, "%5d:" % pos,
!         print >> out, opcode.code,
          if arg is None:
              print >> out, opcode.name