Issue #15394: Fix ref leaks in PyModule_Create.

Patch by Julia Lawall.
diff --git a/Misc/ACKS b/Misc/ACKS
index 3bf81a2..16847be 100644
--- a/Misc/ACKS
+++ b/Misc/ACKS
@@ -542,6 +542,7 @@
 Piers Lauder
 Ben Laurie
 Simon Law
+Julia Lawall
 Chris Lawrence
 Brian Leair
 James Lee
diff --git a/Misc/NEWS b/Misc/NEWS
index 5793aec..0136a44 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -10,6 +10,9 @@
 Core and Builtins
 -----------------
 
+- Issue #15394: An issue in PyModule_Create that caused references to
+  be leaked on some error paths has been fixed.  Patch by Julia Lawall.
+
 - Issue #15368: An issue that caused bytecode generation to be
   non-deterministic when using randomized hashing (-R) has been fixed.