summaryrefslogtreecommitdiffstats
path: root/Lib/sysconfig.py
diff options
context:
space:
mode:
authorÉric Araujo <merwok@netwok.org>2011-05-26 14:35:14 (GMT)
committerÉric Araujo <merwok@netwok.org>2011-05-26 14:35:14 (GMT)
commitf46676d48fe0e06ee76c6158cb915c20e8751ced (patch)
treebd77e24b11f2a378e60ff432ef9f0330dfb3f82f /Lib/sysconfig.py
parent92236e5651ade38b31281ed92e2c2846f8ccd0d8 (diff)
parentaa1ef2d735772b7a4c4b4164998da2883208ea48 (diff)
downloadcpython-f46676d48fe0e06ee76c6158cb915c20e8751ced.zip
cpython-f46676d48fe0e06ee76c6158cb915c20e8751ced.tar.gz
cpython-f46676d48fe0e06ee76c6158cb915c20e8751ced.tar.bz2
Branch merge
Diffstat (limited to 'Lib/sysconfig.py')
-rw-r--r--Lib/sysconfig.py5
1 files changed, 2 insertions, 3 deletions
diff --git a/Lib/sysconfig.py b/Lib/sysconfig.py
index 63becb2..d07784d 100644
--- a/Lib/sysconfig.py
+++ b/Lib/sysconfig.py
@@ -658,11 +658,10 @@ def get_platform():
# to. This makes the compatibility story a bit more sane because the
# machine is going to compile and link as if it were
# MACOSX_DEPLOYMENT_TARGET.
- #
cfgvars = get_config_vars()
macver = cfgvars.get('MACOSX_DEPLOYMENT_TARGET')
- if 1:
+ if True:
# Always calculate the release of the running machine,
# needed to determine if we can build fat binaries or not.
@@ -757,7 +756,7 @@ def _main():
print('Platform: "%s"' % get_platform())
print('Python version: "%s"' % get_python_version())
print('Current installation scheme: "%s"' % _get_default_scheme())
- print('')
+ print()
_print_dict('Paths', get_paths())
print()
_print_dict('Variables', get_config_vars())