diff options
author | Thomas Heller <theller@ctypes.org> | 2006-04-18 18:51:06 (GMT) |
---|---|---|
committer | Thomas Heller <theller@ctypes.org> | 2006-04-18 18:51:06 (GMT) |
commit | 1b04664eab68a2cc3f0293e9db97295e39dbbb70 (patch) | |
tree | 21f4bd9b941f37231969833464ad65ba26d5c027 /Misc | |
parent | 584b0e0c3d27dc6b576366368bf7ca2f60e69e7c (diff) | |
download | cpython-1b04664eab68a2cc3f0293e9db97295e39dbbb70.zip cpython-1b04664eab68a2cc3f0293e9db97295e39dbbb70.tar.gz cpython-1b04664eab68a2cc3f0293e9db97295e39dbbb70.tar.bz2 |
Change those parts of the Python-api that were functions in 2.4, and
are now macros to exported functions again.
Fixes [ 1465834 ] bdist_wininst preinstall script support is broken in 2.5a1.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 9 |
1 files changed, 9 insertions, 0 deletions
@@ -12,6 +12,15 @@ What's New in Python 2.5 alpha 2? Core and builtins ----------------- +- Bug #1465834: 'bdist_wininst preinstall script support' was fixed + by converting these apis from macros into exported functions again: + + PyParser_SimpleParseFile PyParser_SimpleParseString PyRun_AnyFile + PyRun_AnyFileEx PyRun_AnyFileFlags PyRun_File PyRun_FileEx + PyRun_FileFlags PyRun_InteractiveLoop PyRun_InteractiveOne + PyRun_SimpleFile PyRun_SimpleFileEx PyRun_SimpleString + PyRun_String Py_CompileString + - Under COUNT_ALLOCS, types are not necessarily immortal anymore. - All uses of PyStructSequence_InitType have been changed to initialize |