diff options
author | Martin v. Löwis <martin@v.loewis.de> | 2012-06-22 10:20:55 (GMT) |
---|---|---|
committer | Martin v. Löwis <martin@v.loewis.de> | 2012-06-22 10:20:55 (GMT) |
commit | 7800f75827b1be557be16f3b18f5170fbf9fae08 (patch) | |
tree | e4fc657f32119fddf3881ce54bfe89535838c22e /Misc | |
parent | 7f59fd7c7c3315c52034b09ffadeb974bc112b5d (diff) | |
download | cpython-7800f75827b1be557be16f3b18f5170fbf9fae08.zip cpython-7800f75827b1be557be16f3b18f5170fbf9fae08.tar.gz cpython-7800f75827b1be557be16f3b18f5170fbf9fae08.tar.bz2 |
Issue #15042: Add PyState_AddModule and PyState_RemoveModule.
Add version guard for Py_LIMITED_API additions.
Issue #15081: Document PyState_FindModule.
Patch by Robin Schreiber.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -10,6 +10,9 @@ What's New in Python 3.3.0 Beta 1? Core and Builtins ----------------- +- Issue #15042: Add PyState_AddModule and PyState_RemoveModule. Add version + guard for Py_LIMITED_API additions. Patch by Robin Schreiber. + - Issue #10053: Don't close FDs when FileIO.__init__ fails. Loosely based on the work by Hirokazu Yamamoto. @@ -154,6 +157,9 @@ Extension Modules Documentation ------------- +- Issue #15081: Document PyState_FindModule. + Patch by Robin Schreiber. + - Issue #14814: Added first draft of ipaddress module API reference Tests |