summaryrefslogtreecommitdiffstats
path: root/Lib/_strptime.py
Commit message (Collapse)AuthorAgeFilesLines
* Brett's fixes for various bugs and coding issues. Closes SF patch #Barry Warsaw2002-09-231-61/+69
| | | | | 593560, with some minor cleanups, line folding and whitespace normalization by Barry.
* Many hopefully benign style clean ups. Still passes the test suite ofBarry Warsaw2002-08-291-172/+200
| | | | course.
* 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.