summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorNick Coghlan <ncoghlan@gmail.com>2012-07-14 13:59:22 (GMT)
committerNick Coghlan <ncoghlan@gmail.com>2012-07-14 13:59:22 (GMT)
commit761bb1137445c75c4ba87d3669dd546e25277cd5 (patch)
treeb1022e1e07ba07c93eb13458b5995809396f99a3 /Misc
parent2bb3021837351861369cdae15c241d67d2e914ba (diff)
downloadcpython-761bb1137445c75c4ba87d3669dd546e25277cd5.zip
cpython-761bb1137445c75c4ba87d3669dd546e25277cd5.tar.gz
cpython-761bb1137445c75c4ba87d3669dd546e25277cd5.tar.bz2
Close #15230: runpy.run_path now sets __package__ correctly. Also refactored the runpy tests to use a more systematic approach
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS5
1 files changed, 5 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 34a34c0..1b2f4f4 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -87,6 +87,9 @@ Core and Builtins
Library
-------
+- Issue #15230: runpy.run_path now correctly sets __package__ as described
+ in the documentation
+
- Issue #14990: Correctly fail with SyntaxError on invalid encoding
declaration.
@@ -341,6 +344,8 @@ Extension Modules
Tests
-----
+- Issue #15230: Adopted a more systematic approach in the runpy tests
+
- Issue #15300: Ensure the temporary test working directories are in the same
parent folder when running tests in multiprocess mode from a Python build.
Patch by Chris Jerdonek.