summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorTim Peters <tim.peters@gmail.com>2003-02-01 02:54:15 (GMT)
committerTim Peters <tim.peters@gmail.com>2003-02-01 02:54:15 (GMT)
commitb57f8f02bafcb74cd6c47f59f67d1b6bdfb33aec (patch)
tree839b9905e3dbb932b37585032356e035a5cfa2f4 /Misc
parent874d9bcbe5794539a4f6bc1ca46df7841b88f830 (diff)
downloadcpython-b57f8f02bafcb74cd6c47f59f67d1b6bdfb33aec.zip
cpython-b57f8f02bafcb74cd6c47f59f67d1b6bdfb33aec.tar.gz
cpython-b57f8f02bafcb74cd6c47f59f67d1b6bdfb33aec.tar.bz2
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!).
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS4
1 files changed, 2 insertions, 2 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index c0aa976..5d3f57c 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -131,8 +131,8 @@ Extension modules
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.
+ longer exist. The undocumented __setstate__() and __getstate__()
+ methods no longer exist either.
Library
-------