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: Remove unneeded wrappers in pathlib
Type: enhancement Stage: resolved
Components: Library (Lib) Versions: Python 3.7
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: Nosy List: pitrou, serhiy.storchaka
Priority: normal Keywords:

Created on 2017-03-25 08:25 by serhiy.storchaka, last changed 2022-04-11 14:58 by admin. This issue is now closed.

Pull Requests
URL Status Linked Edit
PR 814 merged serhiy.storchaka, 2017-03-25 08:30
Messages (2)
msg290468 - (view) Author: Serhiy Storchaka (serhiy.storchaka) * (Python committer) Date: 2017-03-25 08:25
Since functions in the os module support path-like objects, the code of the pathlib module can be simplified. The wrappers that explicitly convert Path to str no longer needed.
msg290480 - (view) Author: Serhiy Storchaka (serhiy.storchaka) * (Python committer) Date: 2017-03-25 11:42
New changeset 62a99515301fa250feba1a2e0f2d8ea2a29d700e by Serhiy Storchaka in branch 'master':
bpo-29900: Simplify pathlib implementation. (#814)
https://github.com/python/cpython/commit/62a99515301fa250feba1a2e0f2d8ea2a29d700e
History
Date User Action Args
2022-04-11 14:58:44adminsetgithub: 74086
2017-03-25 11:42:58serhiy.storchakasetstatus: open -> closed
resolution: fixed
stage: patch review -> resolved
2017-03-25 11:42:14serhiy.storchakasetmessages: + msg290480
2017-03-25 08:30:16serhiy.storchakasetpull_requests: + pull_request720
2017-03-25 08:25:52serhiy.storchakacreate