[Python-checkins] python/dist/src/Lib pickle.py,1.146,1.147

gvanrossum@users.sourceforge.net gvanrossum@users.sourceforge.net
Thu, 06 Feb 2003 11:30:42 -0800


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

Modified Files:
	pickle.py 
Log Message:
Remove a debug print statement.


Index: pickle.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/pickle.py,v
retrieving revision 1.146
retrieving revision 1.147
diff -C2 -d -r1.146 -r1.147
*** pickle.py	6 Feb 2003 16:23:01 -0000	1.146
--- pickle.py	6 Feb 2003 19:30:38 -0000	1.147
***************
*** 489,493 ****
                                  "without defining __getstate__ "
                                  "cannot be pickled"):
-                     print repr(str(err))
                      raise # Not that specific exception
                  getstate = None
--- 489,492 ----