summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorYury Selivanov <yselivanov@sprymix.com>2014-12-08 23:00:25 (GMT)
committerYury Selivanov <yselivanov@sprymix.com>2014-12-08 23:00:25 (GMT)
commit7de29687f22fff5c38ca252de4167e043b28e470 (patch)
treecc5767d1340db76bfe1ac63e542a668a3a25826b /Misc
parentf8b44a4f37e1885e7dd8d4e4e921e207f7102dd3 (diff)
downloadcpython-7de29687f22fff5c38ca252de4167e043b28e470.zip
cpython-7de29687f22fff5c38ca252de4167e043b28e470.tar.gz
cpython-7de29687f22fff5c38ca252de4167e043b28e470.tar.bz2
inspect: Fix getsource() to load updated source of reloaded module
Issue #1218234. Initial patch by Berker Peksag.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 357f4aa..6c0c1f2 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -39,6 +39,9 @@ Core and Builtins
Library
-------
+- Issue #1218234: Fix inspect.getsource() to load updated source of
+ reloaded module. Initial patch by Berker Peksag.
+
- Issue #22959: In the constructor of http.client.HTTPSConnection, prefer the
context's check_hostname attribute over the *check_hostname* parameter.