Remove several mentions of old Python versions that don't apply anymore.

This commit is contained in:
Georg Brandl 2008-01-05 20:00:55 +00:00
parent 84df79b249
commit d348b2587e
7 changed files with 1 additions and 41 deletions

View file

@ -12,8 +12,6 @@
# If you find problems, please submit bug reports/patches via the
# Python SourceForge Project Page and assign them to "lemburg".
#
# Note: Please keep this module compatible to Python 1.5.2.
#
# Still needed:
# * more support for WinCE
# * support for MS-DOS (PythonDX ?)
@ -857,22 +855,6 @@ def _node(default=''):
# Still not working...
return default
# os.path.abspath is new in Python 1.5.2:
if not hasattr(os.path,'abspath'):
def _abspath(path,
isabs=os.path.isabs,join=os.path.join,getcwd=os.getcwd,
normpath=os.path.normpath):
if not isabs(path):
path = join(getcwd(), path)
return normpath(path)
else:
_abspath = os.path.abspath
def _follow_symlinks(filepath):
""" In case filepath is a symlink, follow it until a