Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
e1de4ee4
Commit
e1de4ee4
authored
Aug 02, 2000
by
Greg Ward
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Ditched 'abspath()' -- don't need 1.5.1 compatability hacks anymore.
parent
c6449bfa
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
10 deletions
+0
-10
Lib/distutils/util.py
Lib/distutils/util.py
+0
-10
No files found.
Lib/distutils/util.py
View file @
e1de4ee4
...
...
@@ -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()'
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment