[issue17014] _getfinalpathname() no more used in 3.4

2013-01-22 Thread Antoine Pitrou
Antoine Pitrou added the comment: 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. -- resolution: -> rejected stage: patch review -> committed/rejected status: open -> close

[issue17014] _getfinalpathname() no more used in 3.4

2013-01-22 Thread Ramchandra Apte
Ramchandra Apte added the comment: LGTM -- nosy: +ramchandra.apte ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe

[issue17014] _getfinalpathname() no more used in 3.4

2013-01-22 Thread Serhiy Storchaka
New submission from Serhiy Storchaka: 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. -- components: Extension Modules, Library (Lib), Windows files: drop_getfinalpathname.patch keywords: pat