From: Éric Araujo Date: Mon, 7 Nov 2011 08:18:30 +0000 (+0100) Subject: Remove unnecessary version check X-Git-Tag: v3.3.0a1~914^2~4^2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=2a7cc5343db808b180507b202f98fe4da8e0e7fa;p=thirdparty%2FPython%2Fcpython.git Remove unnecessary version check --- diff --git a/Lib/sysconfig.py b/Lib/sysconfig.py index 276e68370550..0b79ffb90e20 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