Message387558
| Author |
AndersMunch |
| Recipients |
AndersMunch, eryksun, lemburg, paul.moore, steve.dower, swt2c, tim.golden, zach.ware |
| Date |
2021年02月23日.10:42:07 |
| SpamBayes Score |
-1.0 |
| Marked as misclassified |
Yes |
| Message-id |
<1614076928.3.0.673842676489.issue43115@roundup.psfhosted.org> |
| In-reply-to |
| Content |
>> What does use getlocale is time.strptime and datetime.datetime.strptime, so when getlocale fails, strptime fails.
> Would they work with getlocale() returning None for the encoding ?
Yes. All getlocale is used for in _strptime.py is comparing the value returned to the previous value returned.
I expect changing _strptime._getlang to return the unnormalized value locale._setlocale(locale.LC_TIME, None) would work as well and more robustly. |
|