summaryrefslogtreecommitdiffstats
path: root/Lib/_strptime.py
Commit message (Collapse)AuthorAgeFilesLines
...
* strptime(): The code that was adding 12 to PM hours was incorrectBarry Warsaw2002-08-291-5/+12
| | | | | | | | | because it added it to 12 PM too. 12 PM should be hour 12 not hour 24. Also cleaned up a minor style nit. There are more style problems in this file that I'll clean up next (but I didn't want them to overwhelm the substance of this fix).
* Whitespace normalization.Tim Peters2002-08-081-40/+40
|
* Pure Python strptime implementation by Brett Cannon. See SF patch 474274.Guido van Rossum2002-07-191-0/+488
Also adds tests.