summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAmaury Forgeot d'Arc <amauryfa@gmail.com>2009-01-13 23:19:08 (GMT)
committerAmaury Forgeot d'Arc <amauryfa@gmail.com>2009-01-13 23:19:08 (GMT)
commita18392a324ba9ee8b267ac9181a67751d8150abc (patch)
tree84eba52a92f9a0f96ef9194a3d7ccfd920922b54 /Misc
parentc2f02216b69b844e233a2bd86ba43508fee55c86 (diff)
downloadcpython-a18392a324ba9ee8b267ac9181a67751d8150abc.zip
cpython-a18392a324ba9ee8b267ac9181a67751d8150abc.tar.gz
cpython-a18392a324ba9ee8b267ac9181a67751d8150abc.tar.bz2
#4807: Remove a wrong usage of wsprintf in the winreg module
("windows sprintf", different than swprintf) Needed for the windows CE port.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index f9122bb..7939323 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -12,6 +12,8 @@ What's New in Python 2.7 alpha 1
Core and Builtins
-----------------
+- Issue #4807: Port the _winreg module to Windows CE.
+
- Issue #4935: The overflow checking code in the expandtabs() method common
to str, bytes and bytearray could be optimized away by the compiler, letting
the interpreter segfault instead of raising an error.