summaryrefslogtreecommitdiff
path: root/Lib/test/test_strptime.py
Commit message (Expand)AuthorAgeFilesLines
* Issue #26929: Skip some test_strptime tests failing on Android thatXavier de Gaye2016-11-151-0/+13
* #27364: fix "incorrect" uses of escape character in the stdlib.R David Murray2016-09-081-5/+5
* Issue #23277: Remove unused sys and os importsBerker Peksag2016-04-241-1/+0
* Issue #23718: Fixed parsing time in week 0 before Jan 1. Original patch bySerhiy Storchaka2016-03-121-13/+52
|\
| * Issue #26304: Merge doc wording from 3.5Martin Panter2016-02-101-13/+44
| |\
| | * Issue #6478: _strptime's regexp cache now is reset after changing timezoneSerhiy Storchaka2015-12-031-13/+44
| | |\
| | | * Closes issue #12006: Add ISO 8601 year, week, and day directives to strptime.Alexander Belopolsky2015-10-061-13/+44
* | | | Issue #23718: Fixed parsing time in week 0 before Jan 1. Original patch bySerhiy Storchaka2016-03-121-7/+21
|/ / /
* | | Issue #26304: Change "allows to <verb>" to "allows <verb>ing" or similarMartin Panter2016-02-101-1/+1
|/ /
* | Issue #6478: _strptime's regexp cache now is reset after changing timezoneSerhiy Storchaka2015-12-031-7/+33
|\ \ | |/ |/|
| * Issue #6478: _strptime's regexp cache now is reset after changing timezoneSerhiy Storchaka2015-12-031-7/+33
* | Issue #21741: Update 147 test modules to use test discovery.Zachary Ware2015-04-131-14/+1
|/
* Issue #23136: _strptime now uniformly handles all days in week 0, includingSerhiy Storchaka2015-03-191-0/+18
* Issue 19572: More silently skipped tests explicitly skipped.Zachary Ware2013-12-081-3/+3
* Issue #19545: Avoid chained exceptions while passing stray % toSerhiy Storchaka2013-11-241-0/+4
* #17572: Avoid chained exceptions while passing bad directives to time.strptim...Ezio Melotti2013-04-041-0/+6
* Followup to issue #14157: respect the relative ordering of values produced by...Antoine Pitrou2012-05-141-0/+5
* Issue #14157: Fix time.strptime failing without a year on February 29th.Antoine Pitrou2012-05-101-0/+3
* Give better failure messages in test_strptime (cf. issue #14113).Nadeem Vawda2012-02-291-17/+14
* #11565: Merge with 3.1.Ezio Melotti2011-03-161-13/+8
|\
| * Remove traces of MacOS9 support.Ronald Oussoren2010-05-051-5/+0
| * use assert[Not]In where appropriateEzio Melotti2010-01-231-8/+8
| * Merged revisions 76804 via svnmerge fromEzio Melotti2009-12-181-3/+4
| * Merged revisions 75149,75260-75263,75265-75267,75292,75300,75376,75405,75429-...Benjamin Peterson2009-11-131-8/+7
| * convert old fail* assertions to assert*Benjamin Peterson2009-06-301-47/+47
* | #11565: Fix several typos. Patch by Piotr Kasprzyk.Ezio Melotti2011-03-161-1/+1
* | Merged revisions 76875 via svnmerge fromEzio Melotti2009-12-181-3/+4
* | Merged revisions 76235 via svnmerge fromBenjamin Peterson2009-11-131-8/+7
* | Merged revisions 73715 via svnmerge fromGeorg Brandl2009-08-131-47/+47
|/
* #2621 rename test.test_support to test.supportBenjamin Peterson2008-05-201-2/+2
* Merged revisions 61239-61249,61252-61257,61260-61264,61269-61275,61278-61279,...Christian Heimes2008-03-161-30/+36
* Merged revisions 55817-55961 via svnmerge fromGuido van Rossum2007-06-131-2/+11
* Merged revisions 53952-54987 via svnmerge fromGuido van Rossum2007-04-271-0/+29
* Merged revisions 53538-53622 via svnmerge fromThomas Wouters2007-02-051-0/+4
* SF patch 1631942 by Collin Winter:Guido van Rossum2007-01-101-1/+1
* Change time.strptime() to raise ValueError whenever there is an error in theBrett Cannon2005-11-021-2/+12
* Clear out the regex cache when the TimeRE cache is invalidated by a localeBrett Cannon2005-09-151-0/+2
* Fix bug of implementation of algorithm for calculating the date from year, weekBrett Cannon2004-10-281-3/+18
* Add support for %U and %W to contribute to calculating the date when the yearBrett Cannon2004-10-181-0/+22
* Locale data that contains regex metacharacters are now properly escaped.Brett Cannon2004-10-061-0/+13
* It helps when doing checks if something is in a tuple of strings that if youBrett Cannon2004-07-141-1/+1
* Fix test case for when time.tzname[0] is either UTC or GMT. Also have testBrett Cannon2004-07-121-2/+7
* * Migrate set() and frozenset() from the sandbox.Raymond Hettinger2003-11-161-4/+3
* Make sure parentheses are escaped when used in the format string.Brett Cannon2003-08-291-0/+9
* Fix bug in test_bad_timezone where test was assuming locale knew of PDT.Brett Cannon2003-08-111-2/+3
* Fix handling of bad locale setup where time.tzname[0] == time.tzname[1] andBrett Cannon2003-08-111-0/+20
* Re-introduce caching of TimeRE and compiled regexes with added thread-safety.Brett Cannon2003-08-051-60/+54
* Remove caching of TimeRE (and thus LocaleTime) instance. Error was beingBrett Cannon2003-07-241-7/+10
* Fix error in test of not comparing against 0 item of a listBrett Cannon2003-07-221-1/+1
* Fixes bug of timezone value being left as -1 when ``time.tzname[0] ==Brett Cannon2003-07-031-3/+3