mirror of
https://github.com/kennethreitz-archive/python-build.git
synced 2026-06-05 23:30:18 +00:00
Add patch to fix _environ symbol missing bug in python27, see http://bugs.python.org/issue1602133
This commit is contained in:
+4
-1
@@ -74,6 +74,9 @@ def is_python25(version):
|
||||
def is_python26(version):
|
||||
return version >= '2.6' and version < '2.7'
|
||||
|
||||
def is_python27(version):
|
||||
return version >= '2.7' and version < '2.8'
|
||||
|
||||
def makedirs(path):
|
||||
try:
|
||||
os.makedirs(path)
|
||||
@@ -293,4 +296,4 @@ class Link(object):
|
||||
def show_msg(self):
|
||||
return posixpath.basename(self._url.split('#', 1)[0].split('?', 1)[0])
|
||||
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user