[issue24042] Convert os._getfullpathname() and os._isdir() to Argument Clinic

2015-05-12 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Committed in 4d7175af607e. Thank you Mark for the testing. -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker

[issue24042] Convert os._getfullpathname() and os._isdir() to Argument Clinic

2015-05-12 Thread Mark Lawrence
Mark Lawrence added the comment: I've tested the patch on Windows 8.1, 32 and 64 bit release and debug builds with no problems. -- nosy: +BreamoreBoy ___ Python tracker ___

[issue24042] Convert os._getfullpathname() and os._isdir() to Argument Clinic

2015-05-12 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Could anyone please test the patch on Windows? -- ___ Python tracker ___ ___ Python-bugs-list mail

[issue24042] Convert os._getfullpathname() and os._isdir() to Argument Clinic

2015-04-23 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: I have no Windows. -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https

[issue24042] Convert os._getfullpathname() and os._isdir() to Argument Clinic

2015-04-23 Thread Larry Hastings
Larry Hastings added the comment: Why isn't the patch tested? -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue24042] Convert os._getfullpathname() and os._isdir() to Argument Clinic

2015-04-23 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- keywords: +patch Added file: http://bugs.python.org/file39187/clinic_os_getfullpathname.patch ___ Python tracker ___

[issue24042] Convert os._getfullpathname() and os._isdir() to Argument Clinic

2015-04-23 Thread Serhiy Storchaka
New submission from Serhiy Storchaka: Proposed patch converts os._getfullpathname() and os._isdir() to Argument Clinic. This simplifies a code and as a sided effect adds a check for embedded null character in os._getfullpathname(). The patch is not tested and can contain bugs. -- comp