diff options
author | Éric Araujo <merwok@netwok.org> | 2011-11-07 08:18:30 (GMT) |
---|---|---|
committer | Éric Araujo <merwok@netwok.org> | 2011-11-07 08:18:30 (GMT) |
commit | 2a7cc5343db808b180507b202f98fe4da8e0e7fa (patch) | |
tree | e5023cd444c038b3f0802111a6f0ee5f5ce28b9f /Lib/sysconfig.py | |
parent | 438f21a406b0834acd4e37ba83cd8cc27af5ae79 (diff) | |
download | cpython-2a7cc5343db808b180507b202f98fe4da8e0e7fa.zip cpython-2a7cc5343db808b180507b202f98fe4da8e0e7fa.tar.gz cpython-2a7cc5343db808b180507b202f98fe4da8e0e7fa.tar.bz2 |
Remove unnecessary version check
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 276e683..0b79ffb 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 |