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.

Author killerrex
Recipients QbLearningPython, killerrex
Date 2018-06-01.18:41:45
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1527878505.95.0.81473610881.issue33660@psf.upfronthosting.co.za>
In-reply-to
Content
Script to reproduce:

import os
import pathlib

# Change to the Root directory
os.chdir('/')

# Create a relative path object.
p = pathlib.Path('spam')
print(p.resolve())


Expected output:
/span

Incorrect output
//span
History
Date User Action Args
2018-06-01 18:41:46killerrexsetrecipients: + killerrex, QbLearningPython
2018-06-01 18:41:45killerrexsetmessageid: <1527878505.95.0.81473610881.issue33660@psf.upfronthosting.co.za>
2018-06-01 18:41:45killerrexlinkissue33660 messages
2018-06-01 18:41:45killerrexcreate