summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorRaymond Hettinger <python@rcn.com>2004-08-02 08:30:07 (GMT)
committerRaymond Hettinger <python@rcn.com>2004-08-02 08:30:07 (GMT)
commit66bd23322567a9ef0ad7bbe2436fef73b18bc9db (patch)
tree42b92af0e05cd7778f47a2e905dc559eaf50caca /Misc
parent32083f64a71c4ac80830231479914e40cbd8488b (diff)
downloadcpython-66bd23322567a9ef0ad7bbe2436fef73b18bc9db.zip
cpython-66bd23322567a9ef0ad7bbe2436fef73b18bc9db.tar.gz
cpython-66bd23322567a9ef0ad7bbe2436fef73b18bc9db.tar.bz2
Completed the patch for Bug #215126.
* Fixes an incorrect variable in a PyDict_CheckExact. * Allow general mapping locals arguments for the execfile() function and exec statement. * Add tests.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 2 insertions, 1 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 15713e9..edd5989 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -269,7 +269,8 @@ Core and builtins
- Bug #951851: Python crashed when reading import table of certain
Windows DLLs.
-- Bug #215126. The locals argument to eval() now accepts any mapping type.
+- Bug #215126. The locals argument to eval(), execfile(), and exec now
+ accept any mapping type.
- marshal now shares interned strings. This change introduces
a new .pyc magic.