summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorNick Coghlan <ncoghlan@gmail.com>2012-07-14 14:07:43 (GMT)
committerNick Coghlan <ncoghlan@gmail.com>2012-07-14 14:07:43 (GMT)
commit2f54b98c8c40ab2190db59ae66d23f795b92daa2 (patch)
tree488223e2d14f7495a9ae9d27cfbdfceda77def25 /Misc
parent045bd5340f437468e30d7880700f241ed6830010 (diff)
parent761bb1137445c75c4ba87d3669dd546e25277cd5 (diff)
downloadcpython-2f54b98c8c40ab2190db59ae66d23f795b92daa2.zip
cpython-2f54b98c8c40ab2190db59ae66d23f795b92daa2.tar.gz
cpython-2f54b98c8c40ab2190db59ae66d23f795b92daa2.tar.bz2
Merge fix for #15230 from 3.2
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 89b1147..5bdf2df 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -35,6 +35,9 @@ Core and Builtins
Library
-------
+- Issue #15230: runpy.run_path now correctly sets __package__ as described
+ in the documentation
+
- Issue #15315: Support VS 2010 in distutils cygwincompiler.
- Issue #15294: Fix a regression in pkgutil.extend_path()'s handling of
@@ -133,6 +136,8 @@ Documentation
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.