[issue8915] Use locale.nl_langinfo in _strptime

2016-09-10 Thread Alexander Belopolsky
Changes by Alexander Belopolsky : -- versions: +Python 3.7 -Python 3.4 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubsc

[issue8915] Use locale.nl_langinfo in _strptime

2013-01-11 Thread Brett Cannon
Changes by Brett Cannon : -- nosy: -brett.cannon versions: +Python 3.4 -Python 3.3 ___ Python tracker ___ ___ Python-bugs-list mailing

[issue8915] Use locale.nl_langinfo in _strptime

2011-01-10 Thread Alexander Belopolsky
Alexander Belopolsky added the comment: I would also like to consider using OS strptime on platforms with a decent implementation. -- stage: -> needs patch type: -> feature request versions: +Python 3.3 -Python 3.2 ___ Python tracker

[issue8915] Use locale.nl_langinfo in _strptime

2010-06-09 Thread Alexander Belopolsky
Alexander Belopolsky added the comment: See also issue8957. If this happens, I would like to add a pure python implementation strftime. See also issue7989. -- assignee: -> belopolsky nosy: +belopolsky ___ Python tracker

[issue8915] Use locale.nl_langinfo in _strptime

2010-06-05 Thread Brett Cannon
New submission from Brett Cannon : It might perform better to use locale.nl_langinfo to get the current locale's datetime information instead of reverse-engineering from strftime (need to benchmark to see if this is true). This would need to be conditional as the datetime info might not be exp