diff options
author | Ned Deily <nad@acm.org> | 2013-01-27 02:09:12 (GMT) |
---|---|---|
committer | Ned Deily <nad@acm.org> | 2013-01-27 02:09:12 (GMT) |
commit | 8916b853b9331f2ad51df4fcfd5d3fc528c1e195 (patch) | |
tree | d55c709c167dab935f5332229da6cee012245bf0 /setup.py | |
parent | 059972535fcefc524da52f057c6de22d10646655 (diff) | |
download | cpython-8916b853b9331f2ad51df4fcfd5d3fc528c1e195.zip cpython-8916b853b9331f2ad51df4fcfd5d3fc528c1e195.tar.gz cpython-8916b853b9331f2ad51df4fcfd5d3fc528c1e195.tar.bz2 |
Issue #14018: fix merge error
Diffstat (limited to 'setup.py')
-rw-r--r-- | setup.py | 1 |
1 files changed, 0 insertions, 1 deletions
@@ -59,7 +59,6 @@ def is_macosx_sdk_path(path): """ Returns True if 'path' can be located in an OSX SDK """ - return (path.startswith('/usr/') and not path.startswith('/usr/local')) or path.startswith('/System/') return ( (path.startswith('/usr/') and not path.startswith('/usr/local')) or path.startswith('/System/') or path.startswith('/Library/') ) |