summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorHirokazu Yamamoto <ocean-city@m2.ccsnet.ne.jp>2009-02-16 09:13:20 (GMT)
committerHirokazu Yamamoto <ocean-city@m2.ccsnet.ne.jp>2009-02-16 09:13:20 (GMT)
commit575d13306583791160e902d59d43d825c0d49c3b (patch)
tree9fc39b4913872222390d3abd11158d2b7cf80ade /Misc
parentdebb98d91f6358e85c7790386ab9b6f52299da98 (diff)
downloadcpython-575d13306583791160e902d59d43d825c0d49c3b.zip
cpython-575d13306583791160e902d59d43d825c0d49c3b.tar.gz
cpython-575d13306583791160e902d59d43d825c0d49c3b.tar.bz2
Issue #5249: time.strftime returned malformed string when format string
contained non ascii character on windows.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 2a31483..03982c5 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -12,6 +12,9 @@ What's New in Python 3.1 alpha 0
Core and Builtins
-----------------
+- Issue #5249: time.strftime returned malformed string when format string
+ contained non ascii character on windows.
+
- Issue #5186: Reduce hash collisions for objects with no __hash__ method by
rotating the object pointer by 4 bits to the right.