diff options
author | Brett Cannon <brett@python.org> | 2012-07-09 20:09:00 (GMT) |
---|---|---|
committer | Brett Cannon <brett@python.org> | 2012-07-09 20:09:00 (GMT) |
commit | 77b2abd094998b89ff4d806b78683d4cce8d6d79 (patch) | |
tree | 7d710186109f3c551675e3d2e374589e8741d33c /Doc/whatsnew | |
parent | afbb5fbeb82a1943a10e6709e8199dc984819ddf (diff) | |
download | cpython-77b2abd094998b89ff4d806b78683d4cce8d6d79.zip cpython-77b2abd094998b89ff4d806b78683d4cce8d6d79.tar.gz cpython-77b2abd094998b89ff4d806b78683d4cce8d6d79.tar.bz2 |
Issue #15167 (as part of #13959): imp.get_magic() is no implemented in
Lib/imp.py.
Diffstat (limited to 'Doc/whatsnew')
-rw-r--r-- | Doc/whatsnew/3.3.rst | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Doc/whatsnew/3.3.rst b/Doc/whatsnew/3.3.rst index e2deb9a..fd4a726 100644 --- a/Doc/whatsnew/3.3.rst +++ b/Doc/whatsnew/3.3.rst @@ -1761,6 +1761,9 @@ Porting C code :c:func:`PyUnicode_FromFormat()`, your code will automatically take advantage of the new unicode representations. +* :c:func:`PyImport_GetMagicNumber` now returns -1 upon failure. + + Building C extensions --------------------- |