diff options
author | Éric Araujo <merwok@netwok.org> | 2011-11-07 18:11:12 +0100 |
---|---|---|
committer | Éric Araujo <merwok@netwok.org> | 2011-11-07 18:11:12 +0100 |
commit | b1c6f59d7100aa34a1ea39eb828f392fa0988ea6 (patch) | |
tree | b795d4c5aeca0eb8bd24ff284b94333ad21a49be /Lib/sysconfig.py | |
parent | e2618f34be2deb65799ccf073933cd61b443efd4 (diff) | |
parent | 2a7cc5343db808b180507b202f98fe4da8e0e7fa (diff) | |
download | cpython-git-b1c6f59d7100aa34a1ea39eb828f392fa0988ea6.tar.gz |
Branch merge
Diffstat (limited to 'Lib/sysconfig.py')
-rw-r--r-- | Lib/sysconfig.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Lib/sysconfig.py b/Lib/sysconfig.py index 276e683705..0b79ffb90e 100644 --- a/Lib/sysconfig.py +++ b/Lib/sysconfig.py @@ -488,8 +488,7 @@ def get_config_vars(*args): # Setting 'userbase' is done below the call to the # init function to enable using 'get_config_var' in # the init-function. - if sys.version >= '2.6': - _CONFIG_VARS['userbase'] = _getuserbase() + _CONFIG_VARS['userbase'] = _getuserbase() if 'srcdir' not in _CONFIG_VARS: _CONFIG_VARS['srcdir'] = _PROJECT_BASE |