[issue28412] os.path.splitdrive documentation out of date

2021-06-18 Thread Irit Katriel
Irit Katriel added the comment: This was updated in the Python 3 docs: https://docs.python.org/3/library/os.path.html#os.path.splitdrive The 2.7 docs are no longer maintained. -- nosy: +iritkatriel resolution: -> out of date stage: -> resolved status: open -> closed ___

[issue28412] os.path.splitdrive documentation out of date

2016-10-10 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- nosy: +benjamin.peterson ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https

[issue28412] os.path.splitdrive documentation out of date

2016-10-10 Thread Michael Partridge
New submission from Michael Partridge: ntpath.splitdrive was updated in patch 26ec6248ee8b. (I think this was released in 2.7.8.) This changes the behaviour of splitdrive for UNC style paths. Previously: >>> ntpath.splitdrive(r'\\nancy\foo\bar') ('', 'nancy\\foo\\bar')