summaryrefslogtreecommitdiff
path: root/Lib/_strptime.py
Commit message (Expand)AuthorAgeFilesLines
* Spelling fixes to docs, docstrings, and comments (GH-6374)Miss Islington (bot)2018-04-201-1/+1
* Fix when parsing tz offsets microseconds shorter than 6 (#4781)Mario Corchero2018-01-091-1/+4
* Closes bpo-31800: Support for colon when parsing time offsets (#4015)Mario Corchero2017-10-251-12/+24
* bpo-31370: Remove support for threads-less builds (#3385)Antoine Pitrou2017-09-071-4/+1
* Issue #23718: Fixed parsing time in week 0 before Jan 1. Original patch bySerhiy Storchaka2016-03-121-0/+4
|\
| * 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-8/+14
|\ \ | |/
| * Issue #6478: _strptime's regexp cache now is reset after changing timezoneSerhiy Storchaka2015-12-031-8/+14
| |\
| | * Issue #6478: _strptime's regexp cache now is reset after changing timezoneSerhiy Storchaka2015-12-031-7/+14
* | | Closes issue #12006: Add ISO 8601 year, week, and day directives to strptime.Alexander Belopolsky2015-10-061-13/+68
|/ /
* | Fixed using deprecated escaping in regular expression in _strptime.py (issue2...Serhiy Storchaka2015-03-251-2/+2
* | Issue #23136: _strptime now uniformly handles all days in week 0, includingSerhiy Storchaka2015-03-191-5/+5
|\ \ | |/
| * Issue #23136: _strptime now uniformly handles all days in week 0, includingSerhiy Storchaka2015-03-191-5/+5
* | Issue #22823: Use set literals instead of creating a set from a listRaymond Hettinger2014-11-091-2/+2
|/
* Issue #20976: pyflakes: Remove unused importsVictor Stinner2014-03-201-1/+1
* Issue #19545: Avoid chained exceptions while passing stray % toSerhiy Storchaka2013-11-241-1/+1
|\
| * Issue #19545: Avoid chained exceptions while passing stray % toSerhiy Storchaka2013-11-241-1/+1
* | #18705: merge with 3.3.Ezio Melotti2013-08-171-1/+1
|\ \ | |/
| * #18705: fix a number of typos. Patch by FĂ©vry Thibault.Ezio Melotti2013-08-171-1/+1
* | Issue #18200: Back out usage of ModuleNotFoundError (8d28d44f3a9a)Brett Cannon2013-07-041-1/+1
* | Issue #18200: Update the stdlib (except tests) to useBrett Cannon2013-06-131-1/+1
* | #17572: merge with 3.3.Ezio Melotti2013-04-041-1/+1
|\ \ | |/
| * #17572: Avoid chained exceptions while passing bad directives to time.strptim...Ezio Melotti2013-04-041-1/+1
* | Issue #17165: fix a bare import in _strptime.py.Antoine Pitrou2013-02-101-1/+1
|/
* Issue #1667546: On platforms supporting tm_zone and tm_gmtoff fieldsAlexander Belopolsky2012-06-131-3/+3
* 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/+5
* PEP 8 conformance: class_ -> clsAlexander Belopolsky2010-07-141-3/+3
* Issue #6641: Original commit for this issue, r82053, introduced aAlexander Belopolsky2010-06-181-5/+4
* Issue #6641: The datetime.strptime method now supports the %z directive.Alexander Belopolsky2010-06-171-6/+45
* The message for the exception when time.strptime was passed something otherBrett Cannon2009-03-311-1/+1
* Make sure time.strptime only accepts strings (and document the fact likeBrett Cannon2009-03-301-1/+8
* #2834: Change re module semantics, so that str and bytes mixing is forbidden,Antoine Pitrou2008-08-191-2/+2
* Rename thread to _thread and dummy_thread to _dummy_thread. Issue #2875.Georg Brandl2008-05-251-2/+2
* Merged revisions 61239-61249,61252-61257,61260-61264,61269-61275,61278-61279,...Christian Heimes2008-03-161-6/+15
* Merged revisions 55817-55961 via svnmerge fromGuido van Rossum2007-06-131-3/+3
* Merged revisions 53952-54987 via svnmerge fromGuido van Rossum2007-04-271-5/+4
* - PEP 3106: dict.iterkeys(), .iteritems(), .itervalues() are now gone;Guido van Rossum2007-02-111-1/+1
* Merged revisions 53538-53622 via svnmerge fromThomas Wouters2007-02-051-38/+31
* SF patch 1631942 by Collin Winter:Guido van Rossum2007-01-101-1/+1
* Four months of trunk changes (including a few releases...)Thomas Wouters2006-12-131-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