[Python-checkins] python/dist/src/Misc NEWS,1.634,1.635

tim_one@users.sourceforge.net tim_one@users.sourceforge.net
Fri, 31 Jan 2003 18:54:17 -0800


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

Modified Files:
	NEWS 
Log Message:
There's no good reason for datetime objects to expose __getstate__()
anymore either, so don't.  This also allows to get rid of obscure code
making __getnewargs__ identical to __getstate__ (hmm ... hope there
wasn't more to this than I realize!).


Index: NEWS
===================================================================
RCS file: /cvsroot/python/python/dist/src/Misc/NEWS,v
retrieving revision 1.634
retrieving revision 1.635
diff -C2 -d -r1.634 -r1.635
*** NEWS	1 Feb 2003 00:10:09 -0000	1.634
--- NEWS	1 Feb 2003 02:54:15 -0000	1.635
***************
*** 132,137 ****
    The pickle format of date, time and datetime objects has changed
    completely.  The undocumented pickler and unpickler functions no
!   longer exist.  The undocumented __setstate__() methods no longer
!   exist either.
  
  Library
--- 132,137 ----
    The pickle format of date, time and datetime objects has changed
    completely.  The undocumented pickler and unpickler functions no
!   longer exist.  The undocumented __setstate__() and __getstate__()
!   methods no longer exist either.
  
  Library