summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@haypocalc.com>2010-09-29 10:25:54 (GMT)
committerVictor Stinner <victor.stinner@haypocalc.com>2010-09-29 10:25:54 (GMT)
commit137c34c0274954b2cdd1fd5b490c654528ff30f7 (patch)
treeec540a9b6bba9617af8afcb099fd4908a5bac230 /Misc
parent41a64a53a30f2d81de7b4a05e5e8e9b4089f7ca7 (diff)
downloadcpython-137c34c0274954b2cdd1fd5b490c654528ff30f7.zip
cpython-137c34c0274954b2cdd1fd5b490c654528ff30f7.tar.gz
cpython-137c34c0274954b2cdd1fd5b490c654528ff30f7.tar.bz2
Issue #9979: Create function PyUnicode_AsWideCharString().
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 03ca4a5..f774926 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -10,6 +10,8 @@ What's New in Python 3.2 Alpha 3?
Core and Builtins
-----------------
+- Issue #9979: Create function PyUnicode_AsWideCharString().
+
- Issue #7397: Mention that importlib.import_module() is probably what someone
really wants to be using in __import__'s docstring.