diff options
author | Raymond Hettinger <python@rcn.com> | 2004-08-02 08:30:07 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2004-08-02 08:30:07 (GMT) |
commit | 66bd23322567a9ef0ad7bbe2436fef73b18bc9db (patch) | |
tree | 42b92af0e05cd7778f47a2e905dc559eaf50caca /Misc | |
parent | 32083f64a71c4ac80830231479914e40cbd8488b (diff) | |
download | cpython-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/NEWS | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -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. |