summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorChristian Heimes <christian@cheimes.de>2007-12-10 15:12:41 (GMT)
committerChristian Heimes <christian@cheimes.de>2007-12-10 15:12:41 (GMT)
commit7c7f6afa928c24221f8463a1aa71fc6ef532d29e (patch)
tree8def7775fe40f5b218b9c3cae34527cc714e7ec6 /Misc
parente6daafb449c57f3fafd11c2513f96bf6f6ca130e (diff)
downloadcpython-7c7f6afa928c24221f8463a1aa71fc6ef532d29e.zip
cpython-7c7f6afa928c24221f8463a1aa71fc6ef532d29e.tar.gz
cpython-7c7f6afa928c24221f8463a1aa71fc6ef532d29e.tar.bz2
Added wide char api variants of getch and putch to msvcrt module. The wide char methods are required to fix #1578 in py3k. I figured out that they might be useful in 2.6, too.
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 4db5c3d..c086be9 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -877,6 +877,9 @@ Library
Extension Modules
-----------------
+- Added wide char functions to msvcrt module: getwch, getwche, putwch and
+ ungetwch. The functions accept or return unicode.
+
- os.access now returns True on Windows for any existing directory.
- Added warnpy3k function to the warnings module.