[Python-checkins] python/dist/src/Lib pickle.py,1.84,1.85

tim_one@users.sourceforge.net tim_one@users.sourceforge.net
Mon, 27 Jan 2003 16:43:28 -0800


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

Modified Files:
	pickle.py 
Log Message:
Added XXX about save()'s special-casing of tuples -- I don't get it.


Index: pickle.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/pickle.py,v
retrieving revision 1.84
retrieving revision 1.85
diff -C2 -d -r1.84 -r1.85
*** pickle.py	28 Jan 2003 00:26:14 -0000	1.84
--- pickle.py	28 Jan 2003 00:43:26 -0000	1.85
***************
*** 256,259 ****
--- 256,260 ----
          t = type(object)
  
+         # XXX Why are tuples a special case here?
          if (t is TupleType) and (len(object) == 0):
              if self.bin: