#21 support ubuntu 11.04(Natty)

This commit is contained in:
utahta
2011-07-07 20:39:19 +09:00
parent 87d0d7b52f
commit 8a1032b08c
4 changed files with 109 additions and 2 deletions
+9
View File
@@ -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)