mirror of
https://github.com/kennethreitz-archive/python-build.git
synced 2026-06-05 23:30:18 +00:00
#21 support ubuntu 11.04(Natty)
This commit is contained in:
@@ -77,6 +77,15 @@ def is_python26(version):
|
||||
def is_python27(version):
|
||||
return version >= '2.7' and version < '2.8'
|
||||
|
||||
def is_python30(version):
|
||||
return version >= '3.0' and version < '3.1'
|
||||
|
||||
def is_python31(version):
|
||||
return version >= '3.1' and version < '3.2'
|
||||
|
||||
def is_python32(version):
|
||||
return version >= '3.2' and version < '3.3'
|
||||
|
||||
def makedirs(path):
|
||||
try:
|
||||
os.makedirs(path)
|
||||
|
||||
Reference in New Issue
Block a user