This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: posixpath._resolve_link typo
Type: Stage:
Components: Library (Lib) Versions: Python 2.4
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: Nosy List: ronaldoussoren
Priority: normal Keywords: patch

Created on 2004-07-31 08:24 by ronaldoussoren, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
posixpath.diff ronaldoussoren, 2004-07-31 08:25 The patch
Messages (3)
msg46492 - (view) Author: Ronald Oussoren (ronaldoussoren) * (Python committer) Date: 2004-07-31 08:24
_resolvelink calls abspath to test if a path is absolute, that should 
obviously be a call to isabs.

Without this patch os.path.realpath returns the wrong result when 
the link contents is a relative path.
msg46493 - (view) Author: Ronald Oussoren (ronaldoussoren) * (Python committer) Date: 2004-07-31 08:25
Logged In: YES 
user_id=580910

Stupid SF interface, I forgot to check the upload box :-(
msg46494 - (view) Author: Ronald Oussoren (ronaldoussoren) * (Python committer) Date: 2004-08-02 17:26
Logged In: YES 
user_id=580910

I'm closing this patch because someone else already checked in a fix.
History
Date User Action Args
2022-04-11 14:56:06adminsetgithub: 40666
2004-07-31 08:24:29ronaldoussorencreate