summaryrefslogtreecommitdiff
path: root/Lib/_strptime.py
Commit message (Expand)AuthorAgeFilesLines
* [2.7] bpo-30363: Backport warnings in the re module. (#1577)Serhiy Storchaka2017-05-181-2/+2
* Issue #23718: Fixed parsing time in week 0 before Jan 1. Original patch bySerhiy Storchaka2016-03-121-0/+4
* Issue #6478: _strptime's regexp cache now is reset after changing timezoneSerhiy Storchaka2015-12-031-7/+14
* Issue #23136: _strptime now uniformly handles all days in week 0, includingSerhiy Storchaka2015-03-191-5/+5
* #18705: fix a number of typos. Patch by FĂ©vry Thibault.Ezio Melotti2013-08-171-1/+1
* Followup to issue #14157: respect the relative ordering of values produced by...Antoine Pitrou2012-05-141-0/+8
* Issue #14157: Fix time.strptime failing without a year on February 29th.Antoine Pitrou2012-05-101-1/+6
* add %f format to datetime - issue 1158Skip Montanaro2008-03-151-6/+15
* Make _strptime.TimeRE().pattern() use ``\s+`` for matching whitespace insteadBrett Cannon2007-06-031-1/+1
* time.strptime's caching of its locale object was being recreated when theBrett Cannon2007-04-011-5/+4
* Use the thread lock's context manager instead of a try/finally statement.Brett Cannon2007-01-281-4/+1
* Remove specific mention of my name and email address from modules. Not reallyBrett Cannon2007-01-251-3/+0
* Fix time.strptime's %U support. Basically rewrote the algorithm to be moreBrett Cannon2007-01-251-31/+30
* Make the error message for when the time data and format do not match clearer.Brett Cannon2006-09-261-1/+1
* Change time.strptime() to raise ValueError whenever there is an error in theBrett Cannon2005-11-021-1/+14
* Clear out the regex cache when the TimeRE cache is invalidated by a localeBrett Cannon2005-09-151-1/+2
* Fix logic error introduced in last commit. Also add a comment to explain whatBrett Cannon2005-08-291-2/+5
* fix bug where str.find() was being misused where __contains__ should have beenBrett Cannon2005-08-271-1/+1
* Fix bug of implementation of algorithm for calculating the date from year, weekBrett Cannon2004-10-281-10/+12
* Fix comments.Brett Cannon2004-10-181-2/+4
* Add support for %U and %W to contribute to calculating the date when the yearBrett Cannon2004-10-181-1/+43
* Fix bug introduced by the previous patch by changing TimeRE.__seqToRe() toBrett Cannon2004-10-061-2/+1
* Convert a listcomp to a gencomp (was already editing code).Brett Cannon2004-10-061-2/+2
* Locale data that contains regex metacharacters are now properly escaped.Brett Cannon2004-10-061-2/+4
* Replace str.find()!=1 with the more readable "in" operator.Raymond Hettinger2004-05-041-1/+1
* Deal with possible case of having time.tzname[1] containing UTC or GMT.Brett Cannon2004-03-071-2/+2
* Whitespace normalization.Tim Peters2004-01-181-1/+1
* * Migrate set() and frozenset() from the sandbox.Raymond Hettinger2003-11-161-4/+3
* Let library modules use the new keyword arguments for list.sort().Raymond Hettinger2003-10-161-11/+9
* Make sure parentheses are escaped when used in the format string.Brett Cannon2003-08-291-1/+1
* Fix handling of bad locale setup where time.tzname[0] == time.tzname[1] andBrett Cannon2003-08-111-10/+19
* Fix docstring in LocaleTime.Brett Cannon2003-08-081-2/+2
* Re-introduce caching of TimeRE and compiled regexes with added thread-safety.Brett Cannon2003-08-051-275/+136
* 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