Add patch to fix _environ symbol missing bug in python27, see http://bugs.python.org/issue1602133

This commit is contained in:
Nicolas Pinto
2011-05-28 17:10:45 -04:00
parent 5c5ff69474
commit 92c48adfac
4 changed files with 46 additions and 26 deletions
+4 -1
View File
@@ -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])