[Python-checkins] python/dist/src/Lib pickle.py,1.76,1.77

tim_one@users.sourceforge.net tim_one@users.sourceforge.net
Mon, 27 Jan 2003 13:25:43 -0800


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

Modified Files:
	pickle.py 
Log Message:
Added some comments.


Index: pickle.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/pickle.py,v
retrieving revision 1.76
retrieving revision 1.77
diff -C2 -d -r1.76 -r1.77
*** pickle.py	27 Jan 2003 21:22:10 -0000	1.76
--- pickle.py	27 Jan 2003 21:25:41 -0000	1.77
***************
*** 193,196 ****
--- 193,197 ----
          self.memo[d] = memo_len, obj
  
+     # Return a PUT (BINPUT, LONG_BINPUT) opcode string, with argument i.
      def put(self, i):
          if self.bin:
***************
*** 203,206 ****
--- 204,208 ----
          return PUT + `i` + '\n'
  
+     # Return a GET (BINGET, LONG_BINGET) opcode string, with argument i.
      def get(self, i):
          if self.bin: