summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@haypocalc.com>2010-08-17 23:37:11 (GMT)
committerVictor Stinner <victor.stinner@haypocalc.com>2010-08-17 23:37:11 (GMT)
commit6c00c1464f03deaafbbd5fdd212514cbf36b9bd4 (patch)
tree6928203bf836291bb890f9ebdfb7d71ac670ca98 /Misc
parent6951157475dd22893a2c5813cbbdac63de5c043f (diff)
downloadcpython-6c00c1464f03deaafbbd5fdd212514cbf36b9bd4.zip
cpython-6c00c1464f03deaafbbd5fdd212514cbf36b9bd4.tar.gz
cpython-6c00c1464f03deaafbbd5fdd212514cbf36b9bd4.tar.bz2
Issue #9425: Create PyModule_GetFilenameObject() function
... to get the filename as a unicode object, instead of a byte string. Function needed to support unencodable filenames. Deprecate PyModule_GetFilename() in favor on the new function.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS5
1 files changed, 5 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 586aa7e..8a1d414 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -12,6 +12,11 @@ What's New in Python 3.2 Alpha 2?
Core and Builtins
-----------------
+- Issue #9425: Create PyModule_GetFilenameObject() function to get the filename
+ as a unicode object, instead of a byte string. Function needed to support
+ unencodable filenames. Deprecate PyModule_GetFilename() in favor on the new
+ function.
+
- Issue #8063: Call _PyGILState_Init() earlier in Py_InitializeEx().
- Issue #9612: The set object is now 64-bit clean under Windows.