summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorTim Peters <tim.peters@gmail.com>2004-06-07 23:04:33 (GMT)
committerTim Peters <tim.peters@gmail.com>2004-06-07 23:04:33 (GMT)
commit604c013ef2747e70fa5f3140eb36d9969606070e (patch)
tree9678f32052d99737e23e085d242f88a93b125362 /Misc
parentd348193ff2bbf8b007f9cabd7fc81ab3491464e3 (diff)
downloadcpython-604c013ef2747e70fa5f3140eb36d9969606070e.zip
cpython-604c013ef2747e70fa5f3140eb36d9969606070e.tar.gz
cpython-604c013ef2747e70fa5f3140eb36d9969606070e.tar.bz2
SF 952807: Unpickling pickled instances of subclasses of datetime.date,
datetime.datetime and datetime.time could yield insane objects. Thanks to Jiwon Seo for the fix. Bugfix candidate. I'll backport it to 2.3.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index fe6df61..cfd296e 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -12,6 +12,10 @@ What's New in Python 2.4 alpha 1?
Core and builtins
-----------------
+- Bug #952807: Unpickling pickled instances of subclasses of
+ datetime.date, datetime.datetime and datetime.time could yield insane
+ objects. Thanks to Jiwon Seo for a fix.
+
- Bug #845802: Python crashes when __init__.py is a directory.
- Unicode objects received two new methods: iswide() and width().