From bb56190422f50f9cc976f439facb82a0fd649775 Mon Sep 17 00:00:00 2001 From: Greg Ward Date: Wed, 2 Aug 2000 00:37:32 +0000 Subject: [PATCH] Ditched 'abspath()' -- don't need 1.5.1 compatability hacks anymore. --- Lib/distutils/util.py | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/Lib/distutils/util.py b/Lib/distutils/util.py index 0bff3a5b85..d69626e1f1 100644 --- a/Lib/distutils/util.py +++ b/Lib/distutils/util.py @@ -18,16 +18,6 @@ from distutils.dep_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 def extend (list, new_list): """Appends the list 'new_list' to 'list', just like the 'extend()' -- 2.49.0