summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorBrett Cannon <brett@python.org>2013-07-06 21:56:43 (GMT)
committerBrett Cannon <brett@python.org>2013-07-06 21:56:43 (GMT)
commita53cca3fea655e19a9b98d14c514dcc4c2f780fe (patch)
tree1305cb295dc134ad5e13797c0d7a6203fcb99ca5 /Misc
parent2a99d5df63395149ef7393ef5e8a4fb141f64b55 (diff)
downloadcpython-a53cca3fea655e19a9b98d14c514dcc4c2f780fe.zip
cpython-a53cca3fea655e19a9b98d14c514dcc4c2f780fe.tar.gz
cpython-a53cca3fea655e19a9b98d14c514dcc4c2f780fe.tar.bz2
Issue #18351: Fix various issues with
importlib._bootstrap._get_sourcefile(). Thanks to its only use by the C API, it was never properly tested until now. Thanks to Neal Norwitz for discovering the bug and Madison May for the patch.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/ACKS1
-rw-r--r--Misc/NEWS6
2 files changed, 7 insertions, 0 deletions
diff --git a/Misc/ACKS b/Misc/ACKS
index cf64ed2..1392977 100644
--- a/Misc/ACKS
+++ b/Misc/ACKS
@@ -788,6 +788,7 @@ Laura Matson
Graham Matthews
Dieter Maurer
Daniel May
+Madison May
Arnaud Mazin
Rebecca McCreary
Kirk McDonald
diff --git a/Misc/NEWS b/Misc/NEWS
index f431adf..9ebf594 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -130,6 +130,12 @@ Library
- Issue #18113: Fixed a refcount leak in the curses.panel module's
set_userptr() method. Reported by Atsuo Ishimoto.
+C API
+-----
+
+- Issue #18351: Fix various issues with a helper function in importlib used
+ by PyImport_ExecCodeModuleWithPathnames() (and thus by extension PyImport_ExecCodeModule() and PyImport_ExecCodeModuleEx()).
+
IDLE
----