[Python-checkins] python/dist/src/Lib pickle.py,1.129,1.130

nnorwitz@users.sourceforge.net nnorwitz@users.sourceforge.net
Thu, 30 Jan 2003 20:04:26 -0800


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

Modified Files:
	pickle.py 
Log Message:
Fix typo

Index: pickle.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/pickle.py,v
retrieving revision 1.129
retrieving revision 1.130
diff -C2 -d -r1.129 -r1.130
*** pickle.py	31 Jan 2003 03:43:58 -0000	1.129
--- pickle.py	31 Jan 2003 04:04:23 -0000	1.130
***************
*** 381,385 ****
          getnewargs = getattr(obj, "__getnewargs__", None)
          if getnewargs:
!             args = getnewargs()         # This bette not reference obj
          else:
              args = ()
--- 381,385 ----
          getnewargs = getattr(obj, "__getnewargs__", None)
          if getnewargs:
!             args = getnewargs()         # This better not reference obj
          else:
              args = ()