summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorNed Deily <nad@acm.org>2013-07-31 07:14:20 (GMT)
committerNed Deily <nad@acm.org>2013-07-31 07:14:20 (GMT)
commitfb77386ffb3cbed8ba5c6864bab885a803f50985 (patch)
tree0c0ae769e07d5ba57874d80e957d079b9df9dbc6 /Misc
parent9ba8d6bf3451808bd14d58bae86f07aaf90f47b3 (diff)
downloadcpython-fb77386ffb3cbed8ba5c6864bab885a803f50985.zip
cpython-fb77386ffb3cbed8ba5c6864bab885a803f50985.tar.gz
cpython-fb77386ffb3cbed8ba5c6864bab885a803f50985.tar.bz2
Issue #18071: Extension module builds on OS X could fail with TypeError
if Xcode command line tools were not installed.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 2519380..ee5c8f0 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -74,6 +74,9 @@ Library
the default for linking if LDSHARED is not also overriden. This restores
Distutils behavior introduced in 2.7.3 and inadvertently dropped in 2.7.4.
+- Issue #18071: C extension module builds on OS X could fail with TypeError
+ if the Xcode command line tools were not installed.
+
- Issue #18113: Fixed a refcount leak in the curses.panel module's
set_userptr() method. Reported by Atsuo Ishimoto.