1. 6e4150f Issue #23718: Fixed parsing time in week 0 before Jan 1. Original patch by by Serhiy Storchaka · 8 years ago
  2. 8a7240e Issue #23718: Fixed parsing time in week 0 before Jan 1. Original patch by by Serhiy Storchaka · 8 years ago
  3. 3ab6c98 Issue #6478: _strptime's regexp cache now is reset after changing timezone by Serhiy Storchaka · 9 years ago
  4. b1f64e7 Issue #6478: _strptime's regexp cache now is reset after changing timezone by Serhiy Storchaka · 9 years ago
  5. c7217d7 Issue #6478: _strptime's regexp cache now is reset after changing timezone by Serhiy Storchaka · 9 years ago
  6. 68713e4 Closes issue #12006: Add ISO 8601 year, week, and day directives to strptime. by Alexander Belopolsky · 9 years ago
  7. 15fa1c4 Fixed using deprecated escaping in regular expression in _strptime.py (issue23622). by Serhiy Storchaka · 9 years ago
  8. fc7344a Issue #23136: _strptime now uniformly handles all days in week 0, including by Serhiy Storchaka · 9 years ago
  9. 423feea Issue #23136: _strptime now uniformly handles all days in week 0, including by Serhiy Storchaka · 9 years ago
  10. df1b699 Issue #22823: Use set literals instead of creating a set from a list by Raymond Hettinger · 10 years ago
  11. 7fa767e Issue #20976: pyflakes: Remove unused imports by Victor Stinner · 10 years ago
  12. b5d3863 Issue #19545: Avoid chained exceptions while passing stray % to by Serhiy Storchaka · 11 years ago
  13. cdac302 Issue #19545: Avoid chained exceptions while passing stray % to by Serhiy Storchaka · 11 years ago
  14. 9a3777e #18705: merge with 3.3. by Ezio Melotti · 11 years ago
  15. 30b9d5d #18705: fix a number of typos. Patch by Févry Thibault. by Ezio Melotti · 11 years ago
  16. cd171c8 Issue #18200: Back out usage of ModuleNotFoundError (8d28d44f3a9a) by Brett Cannon · 11 years ago
  17. 0a14066 Issue #18200: Update the stdlib (except tests) to use ModuleNotFoundError. by Brett Cannon · 11 years ago
  18. d57f047 #17572: merge with 3.3. by Ezio Melotti · 11 years ago
  19. 0f38908 #17572: Avoid chained exceptions while passing bad directives to time.strptime(). Initial patch by Claudiu Popa. by Ezio Melotti · 11 years ago
  20. 2306e60 Issue #17165: fix a bare import in _strptime.py. Patch by Berker Peksag. by Antoine Pitrou · 11 years ago
  21. c142bba Issue #1667546: On platforms supporting tm_zone and tm_gmtoff fields by Alexander Belopolsky · 12 years ago
  22. 072e4a3 Followup to issue #14157: respect the relative ordering of values produced by time.strptime(). by Antoine Pitrou · 12 years ago
  23. 1682e5d Issue #14157: Fix time.strptime failing without a year on February 29th. by Antoine Pitrou · 12 years ago
  24. 4988d7a PEP 8 conformance: class_ -> cls by Alexander Belopolsky · 14 years ago
  25. f568218 Issue #6641: Original commit for this issue, r82053, introduced a by Alexander Belopolsky · 14 years ago
  26. ca94f55 Issue #6641: The datetime.strptime method now supports the %z directive. by Alexander Belopolsky · 14 years ago
  27. 71095ea The message for the exception when time.strptime was passed something other by Brett Cannon · 15 years ago
  28. 7f6b4f8 Make sure time.strptime only accepts strings (and document the fact like by Brett Cannon · 15 years ago
  29. fd03645 #2834: Change re module semantics, so that str and bytes mixing is forbidden, by Antoine Pitrou · 16 years ago
  30. 2067bfd Rename thread to _thread and dummy_thread to _dummy_thread. Issue #2875. by Georg Brandl · 16 years ago
  31. dd15f6c Merged revisions 61239-61249,61252-61257,61260-61264,61269-61275,61278-61279,61285-61286,61288-61290,61298,61303-61305,61312-61314,61317,61329,61332,61344,61350-61351,61363-61376,61378-61379,61382-61383,61387-61388,61392,61395-61396,61402-61403 via svnmerge from by Christian Heimes · 16 years ago
  32. cd16bf6 Merged revisions 55817-55961 via svnmerge from by Guido van Rossum · 17 years ago
  33. d8faa36 Merged revisions 53952-54987 via svnmerge from by Guido van Rossum · 17 years ago
  34. cc2b016 - PEP 3106: dict.iterkeys(), .iteritems(), .itervalues() are now gone; by Guido van Rossum · 17 years ago
  35. 9fe394c Merged revisions 53538-53622 via svnmerge from by Thomas Wouters · 17 years ago
  36. b940e11 SF patch 1631942 by Collin Winter: by Guido van Rossum · 17 years ago
  37. 89f507f Four months of trunk changes (including a few releases...) by Thomas Wouters · 18 years ago
  38. 5d0bf94 Change time.strptime() to raise ValueError whenever there is an error in the by Brett Cannon · 19 years ago
  39. a783d06 Clear out the regex cache when the TimeRE cache is invalidated by a locale by Brett Cannon · 19 years ago
  40. f1b2ba6 Fix logic error introduced in last commit. Also add a comment to explain what by Brett Cannon · 19 years ago
  41. 6e372d1 fix bug where str.find() was being misused where __contains__ should have been by Brett Cannon · 19 years ago
  42. 14adbe7 Fix bug of implementation of algorithm for calculating the date from year, week by Brett Cannon · 20 years ago
  43. 8dc25ad Fix comments. by Brett Cannon · 20 years ago
  44. 8abcc5d Add support for %U and %W to contribute to calculating the date when the year by Brett Cannon · 20 years ago
  45. ffa5cf9 Fix bug introduced by the previous patch by changing TimeRE.__seqToRe() to by Brett Cannon · 20 years ago
  46. f7948c2 Convert a listcomp to a gencomp (was already editing code). by Brett Cannon · 20 years ago
  47. 4f35c71 Locale data that contains regex metacharacters are now properly escaped. by Brett Cannon · 20 years ago
  48. bac788a Replace str.find()!=1 with the more readable "in" operator. by Raymond Hettinger · 20 years ago
  49. 8172ac3 Deal with possible case of having time.tzname[1] containing UTC or GMT. by Brett Cannon · 20 years ago
  50. 58eb11c Whitespace normalization. by Tim Peters · 20 years ago
  51. a690a99 * Migrate set() and frozenset() from the sandbox. by Raymond Hettinger · 21 years ago
  52. 6b59f5f Let library modules use the new keyword arguments for list.sort(). by Raymond Hettinger · 21 years ago
  53. 953c6f5 Make sure parentheses are escaped when used in the format string. by Brett Cannon · 21 years ago
  54. 5187a3b Fix handling of bad locale setup where time.tzname[0] == time.tzname[1] and by Brett Cannon · 21 years ago
  55. f5c96fb Fix docstring in LocaleTime. by Brett Cannon · 21 years ago
  56. 474335c Re-introduce caching of TimeRE and compiled regexes with added thread-safety. by Brett Cannon · 21 years ago
  57. 2c24d42 Fixes bug of having default argument for TimeRE's __init__ that caused the by Brett Cannon · 21 years ago
  58. 175ddb5 Remove caching of TimeRE (and thus LocaleTime) instance. Error was being by Brett Cannon · 21 years ago
  59. 4a6302b SF 748201: time.strptime() should display format and date on error by Raymond Hettinger · 21 years ago
  60. cde2200 Fixes bug of timezone value being left as -1 when ``time.tzname[0] == by Brett Cannon · 21 years ago
  61. 77290f2 use == like all the other conditionals by Neal Norwitz · 21 years ago
  62. abe8eb0 Call time.tzset (if available) just before calculating possible timezones from time.tzname. by Brett Cannon · 21 years ago
  63. 172d9ef Beefed up timezone support. UTC and GMT are now always recognized timezones by Brett Cannon · 21 years ago
  64. 2b6dfec Raise a ValueError when there is data that was not covered in the format string. Done to match behavior of pre-existing C-based strptime implementations. by Brett Cannon · 21 years ago
  65. 0eadaac Whitespace normalization. by Tim Peters · 21 years ago
  66. 1e91d8e Make _strptime escape regex syntax in format string to prevent use in internal regex. by Brett Cannon · 21 years ago
  67. 1fdb633 SF patch #691928: Use datetime in _strptime Contributed by Brett Cannon. by Raymond Hettinger · 21 years ago
  68. 2c60f7a Whitespace normalization. by Tim Peters · 21 years ago
  69. 80cebc1 SF patch 670194: Performance enhancement for _strptime.py. by Tim Peters · 21 years ago
  70. 08e5427 SF patch 670012: Compatibility changes for _strptime.py. by Tim Peters · 21 years ago
  71. 62fe755 Checking in Brett Cannon's patch #662053, which fixes bug #661354. by Jack Jansen · 21 years ago
  72. 5efc50d Fix SF #658820, regex fixes for _strptime (Brett Cannon) by Neal Norwitz · 21 years ago
  73. 490602d Fix julian day problem with strptime. Note: XXX about using 0, suggestions? by Neal Norwitz · 21 years ago
  74. e16e01f Patch #639112: fixes for None locale and tz. by Martin v. Löwis · 22 years ago
  75. 4d895fa Brett's fixes for various bugs and coding issues. Closes SF patch # by Barry Warsaw · 22 years ago
  76. 35816e6 Many hopefully benign style clean ups. Still passes the test suite of course. by Barry Warsaw · 22 years ago
  77. 2bdb614 strptime(): The code that was adding 12 to PM hours was incorrect by Barry Warsaw · 22 years ago
  78. 469cdad Whitespace normalization. by Tim Peters · 22 years ago
  79. 00efe7e Pure Python strptime implementation by Brett Cannon. See SF patch 474274. by Guido van Rossum · 22 years ago