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: _getfinalpathname() no more used in 3.4
Type: enhancement Stage: resolved
Components: Extension Modules, Library (Lib), Windows Versions: Python 3.4
process
Status: closed Resolution: rejected
Dependencies: Superseder:
Assigned To: Nosy List: Ramchandra Apte, brian.curtin, pitrou, serhiy.storchaka
Priority: normal Keywords: patch

Created on 2013-01-22 12:28 by serhiy.storchaka, last changed 2022-04-11 14:57 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
drop_getfinalpathname.patch serhiy.storchaka, 2013-01-22 12:28 review
Messages (3)
msg180379 - (view) Author: Serhiy Storchaka (serhiy.storchaka) * (Python committer) Date: 2013-01-22 12:28
It was a helper function for samepath on windows and not used more since samepath implementation was changed.

Here is a patch which remove it.
msg180384 - (view) Author: Ramchandra Apte (Ramchandra Apte) * Date: 2013-01-22 13:06
LGTM
msg180389 - (view) Author: Antoine Pitrou (pitrou) * (Python committer) Date: 2013-01-22 14:11
Rejecting. It will be used for Windows realpath() (issue14094) and, even if it's a private function, it can also be useful for third-party libs such as pathlib.
History
Date User Action Args
2022-04-11 14:57:40adminsetgithub: 61216
2013-01-22 14:11:56pitrousetstatus: open -> closed
resolution: rejected
messages: + msg180389

stage: patch review -> resolved
2013-01-22 13:06:07Ramchandra Aptesetnosy: + Ramchandra Apte
messages: + msg180384
2013-01-22 12:28:38serhiy.storchakacreate