summaryrefslogtreecommitdiff
path: root/Lib/test/test_strptime.py
Commit message (Expand)AuthorAgeFilesLines
* 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
* Fix typo in error messageNeal Norwitz2003-06-301-1/+1
* Removed invalid test.Raymond Hettinger2003-06-291-3/+0
* Beefed up timezone support. UTC and GMT are now always recognized timezonesBrett Cannon2003-05-111-5/+14
* Combine the functionality of test_support.run_unittest()Walter Dörwald2003-05-011-8/+8
* Raise a ValueError when there is data that was not covered in the format stri...Brett Cannon2003-04-281-0/+4
* Make _strptime escape regex syntax in format string to prevent use in interna...Brett Cannon2003-04-191-0/+14
* SF patch #691928: Use datetime in _strptimeRaymond Hettinger2003-03-091-32/+38
* SF patch 670012: Compatibility changes for _strptime.py.Tim Peters2003-01-181-47/+38
* Fix julian day problem with strptime. Note: XXX about using 0, suggestions?Neal Norwitz2002-12-261-0/+12
* Patch #639112: fixes for None locale and tz.Martin v. Löwis2002-11-271-56/+141
* Brett's fixes for various bugs and coding issues. Closes SF patch #Barry Warsaw2002-09-231-7/+26
* Delete the %c test from test_date_time() untill Brett Cannon has timeGuido van Rossum2002-09-031-2/+2
* The test I saw failing this morning just happened to be run at 8amBarry Warsaw2002-08-291-0/+12
* Standardize behavior: no docstrings in test functions; add a properGuido van Rossum2002-08-221-46/+44
* Whitespace normalization.Tim Peters2002-08-081-10/+10
* Pure Python strptime implementation by Brett Cannon. See SF patch 474274.Guido van Rossum2002-07-191-0/+279