[Python-checkins] python/dist/src/Lib pickle.py,1.81,1.82

tim_one@users.sourceforge.net tim_one@users.sourceforge.net
Mon, 27 Jan 2003 16:23:39 -0800


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

Modified Files:
	pickle.py 
Log Message:
clear_memo():  Repaired grammar in docstring.


Index: pickle.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/pickle.py,v
retrieving revision 1.81
retrieving revision 1.82
diff -C2 -d -r1.81 -r1.82
*** pickle.py	28 Jan 2003 00:22:12 -0000	1.81
--- pickle.py	28 Jan 2003 00:23:36 -0000	1.82
***************
*** 184,190 ****
  
          The memo is the data structure that remembers which objects the
!         pickler has already seen, so that shared or recursive objects pickled
!         by reference and not by value.  This method is useful when re-using
!         picklers.
  
          """
--- 184,190 ----
  
          The memo is the data structure that remembers which objects the
!         pickler has already seen, so that shared or recursive objects are
!         pickled by reference and not by value.  This method is useful when
!         re-using picklers.
  
          """