summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorMartin v. Löwis <martin@v.loewis.de>2012-06-22 10:20:55 (GMT)
committerMartin v. Löwis <martin@v.loewis.de>2012-06-22 10:20:55 (GMT)
commit7800f75827b1be557be16f3b18f5170fbf9fae08 (patch)
treee4fc657f32119fddf3881ce54bfe89535838c22e /Misc
parent7f59fd7c7c3315c52034b09ffadeb974bc112b5d (diff)
downloadcpython-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/NEWS6
1 files changed, 6 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index c32697d..1149ecf 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -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