summaryrefslogtreecommitdiffstats
path: root/Lib/_strptime.py
Commit message (Expand)AuthorAgeFilesLines
* Backport of fix for bug of year/<week of year>/<day of week> calculation thatBrett Cannon2004-10-281-10/+12
* Add support for using %U and %W in strptime when year and day of the week areBrett Cannon2004-10-181-2/+37
* Escape locale data for regex metacharacters.Brett Cannon2004-10-061-1/+2
* _strptime.srptime() escaped parentheses in the format string properly.Brett Cannon2003-08-291-1/+1
* Fix bug where handling issue of time.tzname[0] == time.tzname[1] andBrett Cannon2003-08-111-5/+5
* Fix docstring for LocaleTime.Brett Cannon2003-08-081-2/+2
* Re-introduction of caching. Not thread-safe against the changing of localeBrett Cannon2003-08-061-3/+19
* Fixes bug of having default argument for TimeRE's __init__ that caused theBrett Cannon2003-07-241-2/+5
* Remove caching of TimeRE (and thus LocaleTime) instance. Error was beingBrett Cannon2003-07-241-41/+13
* SF 748201: time.strptime() should display format and date on errorRaymond Hettinger2003-07-131-1/+2
* Fixes bug of timezone value being left as -1 when ``time.tzname[0] ==Brett Cannon2003-07-031-4/+5
* use == like all the other conditionalsNeal Norwitz2003-06-291-1/+1
* Call time.tzset (if available) just before calculating possible timezones fro...Brett Cannon2003-05-131-0/+4
* Beefed up timezone support. UTC and GMT are now always recognized timezonesBrett Cannon2003-05-111-7/+15
* Raise a ValueError when there is data that was not covered in the format stri...Brett Cannon2003-04-281-0/+3
* Whitespace normalization.Tim Peters2003-04-241-3/+2
* Make _strptime escape regex syntax in format string to prevent use in interna...Brett Cannon2003-04-191-1/+10
* SF patch #691928: Use datetime in _strptimeRaymond Hettinger2003-03-091-56/+18
* Whitespace normalization.Tim Peters2003-01-291-3/+3
* SF patch 670194: Performance enhancement for _strptime.py.Tim Peters2003-01-191-20/+36
* SF patch 670012: Compatibility changes for _strptime.py.Tim Peters2003-01-181-91/+89
* Checking in Brett Cannon's patch #662053, which fixes bug #661354.Jack Jansen2003-01-151-8/+12
* Fix SF #658820, regex fixes for _strptime (Brett Cannon)Neal Norwitz2002-12-301-8/+9
* Fix julian day problem with strptime. Note: XXX about using 0, suggestions?Neal Norwitz2002-12-261-1/+3
* Patch #639112: fixes for None locale and tz.Martin v. Löwis2002-11-271-5/+13
* Brett's fixes for various bugs and coding issues. Closes SF patch #Barry Warsaw2002-09-231-61/+69
* Many hopefully benign style clean ups. Still passes the test suite ofBarry Warsaw2002-08-291-172/+200
* strptime(): The code that was adding 12 to PM hours was incorrectBarry Warsaw2002-08-291-5/+12
* 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