Commit e1de4ee4 authored by Greg Ward's avatar Greg Ward

Ditched 'abspath()' -- don't need 1.5.1 compatability hacks anymore.

parent c6449bfa
...@@ -18,16 +18,6 @@ from distutils.dep_util import * ...@@ -18,16 +18,6 @@ from distutils.dep_util import *
from distutils.archive_util import * from distutils.archive_util import *
# Need to define 'abspath()', because it was new with Python 1.5.2
if hasattr (os.path, 'abspath'):
abspath = os.path.abspath
else:
def abspath(path):
if not os.path.isabs(path):
path = os.path.join(os.getcwd(), path)
return os.path.normpath(path)
# More backwards compatibility hacks # More backwards compatibility hacks
def extend (list, new_list): def extend (list, new_list):
"""Appends the list 'new_list' to 'list', just like the 'extend()' """Appends the list 'new_list' to 'list', just like the 'extend()'
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment