[issue19191] os.path.splitext in windows , a little question

2013-10-11 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- status: open -> closed ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://m

[issue19191] os.path.splitext in windows , a little question

2013-10-08 Thread Tim Golden
Changes by Tim Golden : -- resolution: -> wont fix stage: -> committed/rejected ___ Python tracker ___ ___ Python-bugs-list mailing

[issue19191] os.path.splitext in windows , a little question

2013-10-08 Thread Tim Golden
Tim Golden added the comment: This was implemented after discussion in issue1115886: http://bugs.python.org/issue1115886 and python-dev: https://mail.python.org/pipermail/python-dev/2007-March/071557.html In short, it could have gone either way and it went this way. -- nosy: +tim

[issue19191] os.path.splitext in windows , a little question

2013-10-08 Thread xiaowei
New submission from xiaowei: >>> print( os.path.splitext.__doc__ ) Split the extension from a pathname. Extension is everything from the last dot to the end, ignoring leading dots. Returns "(root, ext)"; ext may be empty. >>> os.path.splitext('.txt') ('.txt', '') I think, in wind