projects
/
python
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
438f21a
)
Remove unnecessary version check
author
Éric Araujo
<merwok@netwok.org>
Mon, 7 Nov 2011 08:18:30 +0000
(09:18 +0100)
committer
Éric Araujo
<merwok@netwok.org>
Mon, 7 Nov 2011 08:18:30 +0000
(09:18 +0100)
Lib/sysconfig.py
patch
|
blob
|
history
diff --git
a/Lib/sysconfig.py
b/Lib/sysconfig.py
index 276e68370550a6a54b7d7a5fedd65c0301a1b589..0b79ffb90e209d6d27dc69906f85654e430ae805 100644
(file)
--- 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