[issue29900] Remove unneeded wrappers in pathlib

2017-03-25 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___ _

[issue29900] Remove unneeded wrappers in pathlib

2017-03-25 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: New changeset 62a99515301fa250feba1a2e0f2d8ea2a29d700e by Serhiy Storchaka in branch 'master': bpo-29900: Simplify pathlib implementation. (#814) https://github.com/python/cpython/commit/62a99515301fa250feba1a2e0f2d8ea2a29d700e -- _

[issue29900] Remove unneeded wrappers in pathlib

2017-03-25 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- pull_requests: +720 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://ma

[issue29900] Remove unneeded wrappers in pathlib

2017-03-25 Thread Serhiy Storchaka
New submission from Serhiy Storchaka: 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. -- components: Library (Lib) messages: 290468 nosy: pitrou, serhiy.stor