diff options
author | Tim Peters <tim.peters@gmail.com> | 2003-02-01 02:54:15 (GMT) |
---|---|---|
committer | Tim Peters <tim.peters@gmail.com> | 2003-02-01 02:54:15 (GMT) |
commit | b57f8f02bafcb74cd6c47f59f67d1b6bdfb33aec (patch) | |
tree | 839b9905e3dbb932b37585032356e035a5cfa2f4 /Misc | |
parent | 874d9bcbe5794539a4f6bc1ca46df7841b88f830 (diff) | |
download | cpython-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/NEWS | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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 ------- |