diff options
author | Ned Deily <nad@acm.org> | 2013-01-10 06:04:35 (GMT) |
---|---|---|
committer | Ned Deily <nad@acm.org> | 2013-01-10 06:04:35 (GMT) |
commit | ec8f8f7959169593fe258a3792b498135af70701 (patch) | |
tree | 94fea4604f210a6d1bb5b87bc688ef9b26ac3c21 /Misc/NEWS | |
parent | c4b82c037e95fe2fe77352e8a4a54be7b209df2a (diff) | |
download | cpython-ec8f8f7959169593fe258a3792b498135af70701.zip cpython-ec8f8f7959169593fe258a3792b498135af70701.tar.gz cpython-ec8f8f7959169593fe258a3792b498135af70701.tar.bz2 |
Issue #15782: Prevent compile errors of OS X Carbon modules _Fm, _Qd, and
_Qdoffs when compiling with an SDK of 10.7 or later. The OS X APIs they
wrap have long been deprecated and have now been removed with 10.7.
These modules were already empty for 64-bit builds and have been removed
in Python 3. (Original patch by Ronald Oussoren.)
Diffstat (limited to 'Misc/NEWS')
-rw-r--r-- | Misc/NEWS | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -600,6 +600,12 @@ Library - Issue #16441: Avoid excessive memory usage working with large gzip files using the gzip module. +- Issue #15782: Prevent compile errors of OS X Carbon modules _Fm, _Qd, and + _Qdoffs when compiling with an SDK of 10.7 or later. The OS X APIs they + wrap have long been deprecated and have now been removed with 10.7. + These modules were already empty for 64-bit builds and have been removed + in Python 3. + Extension Modules ----------------- |