summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorEric Snow <ericsnowcurrently@gmail.com>2013-08-15 00:03:34 (GMT)
committerEric Snow <ericsnowcurrently@gmail.com>2013-08-15 00:03:34 (GMT)
commit7491f1726ba3a5f78beddca2280f9141d559ff1c (patch)
treea272bd5852fe3662a81dfc78481f6aa88a68a870 /Misc/NEWS
parente76c0393a8dc35af38d6d2af2827f405a7ef6116 (diff)
downloadcpython-7491f1726ba3a5f78beddca2280f9141d559ff1c.zip
cpython-7491f1726ba3a5f78beddca2280f9141d559ff1c.tar.gz
cpython-7491f1726ba3a5f78beddca2280f9141d559ff1c.tar.bz2
issue #18698: ensure importlib.reload() returns the module out of sys.modules.
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 7a4491a..0dd2d10 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -202,6 +202,8 @@ Library
- Issue #17269: Workaround for socket.getaddrinfo crash on MacOS X
with port None or "0" and flags AI_NUMERICSERV.
+- Issue #18698: Ensure imp.reload() returns the module out of sys.modules.
+
- Issue #18080: When building a C extension module on OS X, if the compiler
is overriden with the CC environment variable, use the new compiler as
the default for linking if LDSHARED is not also overriden. This restores