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.
diff --git a/Misc/NEWS b/Misc/NEWS
index c32697d..1149ecf 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -10,6 +10,9 @@
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 @@
Documentation
-------------
+- Issue #15081: Document PyState_FindModule.
+ Patch by Robin Schreiber.
+
- Issue #14814: Added first draft of ipaddress module API reference
Tests