1. 98ff4d5 bpo-36782: Created C API wrappers and added missing tests for functions in the PyDateTimeAPI. (#13088) by Edison A · 5 years ago
  2. 9646630 bpo-36766: Typos in docs and code comments (GH-13116) by penguindustin · 5 years ago
  3. 88c0937 bpo-36004: Add date.fromisocalendar (GH-11888) by Paul Ganssle · 5 years ago
  4. 4d8c8c0 bpo-36025: Fix PyDate_FromTimestamp API (GH-11922) by Paul Ganssle · 5 years ago
  5. 6a44f6e bpo-36048: Use __index__() instead of __int__() for implicit conversion if available. (GH-11952) by Serhiy Storchaka · 6 years ago
  6. 89427cd bpo-32417: Make timedelta arithmetic respect subclasses (#10902) by Paul Ganssle · 6 years ago
  7. 454b3d4 bpo-35066: _dateime.datetime.strftime copies trailing '%' (GH-10692) by MichaelSaah · 6 years ago
  8. 8452ca1 bpo-22005: Fixed unpickling instances of datetime classes pickled by Python 2. (GH-11017) by Serhiy Storchaka · 6 years ago
  9. 3ec0f49 bpo-35021: Fix assertion failures in _datetimemodule.c. (GH-10039) by Serhiy Storchaka · 6 years ago
  10. 3b0047d bpo-34482: test datetime classes' handling of non-UTF-8-encodable strings (GH-8878) by Alexey Izbyshev · 6 years ago
  11. 3df8540 bpo-34454: Clean up datetime.fromisoformat surrogate handling (GH-8959) by Paul Ganssle · 6 years ago
  12. 096329f bpo-34454: fix .fromisoformat() methods crashing on inputs with surrogate code points (GH-8862) by Paul Ganssle · 6 years ago
  13. 96d1e69 bpo-29097: Forego fold detection on windows for low timestamp values (GH-2385) by Ammar Askar · 6 years ago
  14. 877b232 bpo-33812: Corrected astimezone for naive datetimes. (GH-7578) by Alexander Belopolsky · 6 years ago
  15. 4c3e39f Datetime test coverage (#7544) by Alexander Belopolsky · 6 years ago
  16. a049f57 Test that new_timezone can return the UTC singleton (gh-5318) by Paul Ganssle · 7 years ago
  17. c3d9508 bpo-32746: Fix multiple typos (GH-5144) by Leo Arias · 7 years ago
  18. 04af5b1 bpo-10381: Add timezone to datetime C API (#5032) by Paul Ganssle · 7 years ago
  19. 9f1b7b9 bpo-32403: Faster date and datetime constructors (#4993) by Paul Ganssle · 7 years ago
  20. 09dc2f5 bpo-15873: Implement [date][time].fromisoformat (#4699) by Paul Ganssle · 7 years ago
  21. 04dee27 Remove duplicated import from datetime tests (#4444) by Riccardo Magliocchetti · 7 years ago
  22. 191e993 bpo-31222: Make (datetime|date|time).replace return subclass type in Pure Python (#4176) by Paul Ganssle · 7 years ago
  23. 3231893 Closes bpo-31800: Support for colon when parsing time offsets (#4015) by Mario Corchero · 7 years ago
  24. 4ffd465 bpo-31752: Fix possible crash in timedelta constructor called with custom integers. (#3947) by Serhiy Storchaka · 7 years ago
  25. 865e4b4 bpo-31293: Fix crashes in truediv and mul of a timedelta by a float with a bad as_integer_ratio() method. (#3227) by Oren Milman · 7 years ago
  26. 018d353 Closes issue bpo-5288: Allow tzinfo objects with sub-minute offsets. (#2896) by Alexander Belopolsky · 7 years ago
  27. cc5a65c bpo-30302 Make timedelta.__repr__ more informative. (#1493) by Utkarsh Upadhyay · 7 years ago
  28. 287c559 bpo-30822: Fix testing of datetime module. (#2530) (#2783) by Utkarsh Upadhyay · 7 years ago
  29. 8207c17 Revert "bpo-30822: Fix testing of datetime module." (#2588) by Victor Stinner · 7 years ago
  30. 98b6bc3 bpo-30822: Fix testing of datetime module. (#2530) by Utkarsh Upadhyay · 7 years ago
  31. 314d6fc bpo-29953: Fix memory leaks in the replace() method of datetime and time (#927) by Serhiy Storchaka · 8 years ago
  32. 2a35c93 Fix test_datetime on Windows by Victor Stinner · 8 years ago
  33. 6f37e36 Fix test_datetime on system with 32-bit time_t by Victor Stinner · 8 years ago
  34. b67f096 Fix datetime.fromtimestamp(): check bounds by Victor Stinner · 8 years ago
  35. 546ce65 Issue #28752: Restored the __reduce__() methods of datetime objects. by Serhiy Storchaka · 8 years ago
  36. 44b548d #27364: fix "incorrect" uses of escape character in the stdlib. by R David Murray · 8 years ago
  37. 15f44ab Issue #27895: Spelling fixes (Contributed by Ville Skyttä). by Raymond Hettinger · 8 years ago
  38. 7c7c146 Issue #27834: Avoid overflow error in ZoneInfo.invert(). by Alexander Belopolsky · 8 years ago
  39. e09594d Issue #24773: Include Tallinn 1999-10-31 transition in tests. by Alexander Belopolsky · 8 years ago
  40. 10c2dd2 Issue #24773: Skip system tests for transitions in year 2037 and later. by Alexander Belopolsky · 8 years ago
  41. 1b8f26c Issue #24773: Fix and speed-up ZoneInfoCompleteTest. by Alexander Belopolsky · 8 years ago
  42. 47649ab Closes #27710: Disallow fold not in [0, 1] in time and datetime constructors. by Alexander Belopolsky · 8 years ago
  43. 43746c3 Closes #27661: Added tzinfo keyword argument to datetime.combine. by Alexander Belopolsky · 8 years ago
  44. 07e2a0a Issue 24773: Use the standard Asia/Tehran name in the Iran test. by Alexander Belopolsky · 8 years ago
  45. 611adf2 Issue #24773: Fixed tests failures on systems with 32-bit time_t. by Alexander Belopolsky · 8 years ago
  46. 95f7b9f Issue 24773: Make zoneinfo tests more robust. (reapply) by Alexander Belopolsky · 8 years ago
  47. cd28013 Reindented Lib/test/datetimetester.py. by Alexander Belopolsky · 8 years ago
  48. 4719ae7 Issue #24773: Made ZoneInfoCompleteTest a TestSuit. by Alexander Belopolsky · 8 years ago
  49. 8dadb21 Issue 24773: Make zoneinfo tests more robust. by Alexander Belopolsky · 8 years ago
  50. 5d0c598 Closes issue #24773: Implement PEP 495 (Local Time Disambiguation). by Alexander Belopolsky · 8 years ago
  51. 3e04d5b Issue #27076: Merge spelling from 3.5 by Martin Panter · 8 years ago
  52. 46f5072 Issue #27076: Doc, comment and tests spelling fixes by Martin Panter · 8 years ago
  53. 16b698b merge by Alexander Belopolsky · 9 years ago
  54. 1dcf4f9 Issue#26616:Fixed a bug in datetime.astimezone() method. by Alexander Belopolsky · 9 years ago
  55. 02cce69 Issue #19265: Improve test coverage of datetime.tzinfo by Berker Peksag · 9 years ago
  56. e3385b4 Issue #19265: Improve test coverage of datetime.tzinfo by Berker Peksag · 9 years ago
  57. 15a83e8 Revert change 291d47954618 by Victor Stinner · 9 years ago
  58. 474ebbb Always test datetime.strftime("%4Y") by Victor Stinner · 9 years ago
  59. a2998a6 Closes #19475: Added timespec to the datetime.isoformat() method. by Alexander Belopolsky · 9 years ago
  60. d0c1f77 Issue #26198: Make datetime error tests more lenient. by Serhiy Storchaka · 9 years ago
  61. 0c0d537 Issue #26198: Make datetime error tests more lenient. by Serhiy Storchaka · 9 years ago
  62. fca2232 Issue #20220: Revert time zone test debugging, revision 139c18943d9b by Martin Panter · 9 years ago
  63. 51eca24 Issue #9051: Added tests for pickling and copying the timezone objects. by Serhiy Storchaka · 9 years ago
  64. f242aeb Issue #9051: Added tests for pickling and copying the timezone objects. by Serhiy Storchaka · 9 years ago
  65. e28209f Issue #9051: Added tests for pickling and copying the timezone objects. by Serhiy Storchaka · 9 years ago
  66. 63c1ebb Issue #25168: Temporary timezone and cache debugging by Martin Panter · 9 years ago
  67. 365ba8f Closes issue #23600: Wrong results from tzinfo.fromutc(). by Alexander Belopolsky · 9 years ago
  68. edc6885 Closes issue #23600: Wrong results from tzinfo.fromutc(). by Alexander Belopolsky · 9 years ago
  69. d19b504 Closes issue #23600: Wrong results from tzinfo.fromutc(). by Alexander Belopolsky · 9 years ago
  70. c58c2cb Closes issue #23600: Wrong results from tzinfo.fromutc(). by Alexander Belopolsky · 9 years ago
  71. c79447b Closes issue #23600: Wrong results from tzinfo.fromutc(). by Alexander Belopolsky · 9 years ago
  72. 5ebfe42 Oops, fix test_microsecond_rounding() by Victor Stinner · 9 years ago
  73. 84ff4ab Merge 3.4 (datetime rounding) by Victor Stinner · 9 years ago
  74. 511491a Issue #23517: Fix rounding in fromtimestamp() and utcfromtimestamp() methods by Victor Stinner · 9 years ago
  75. cd5d765 cleanup datetime code by Victor Stinner · 9 years ago
  76. 7667f58 Issue #23517: fromtimestamp() and utcfromtimestamp() methods of by Victor Stinner · 9 years ago
  77. 69cc487 Revert change 0eb8c182131e: by Victor Stinner · 9 years ago
  78. 7827a5b Closes Issue#22241: timezone.utc name is now plain 'UTC', not 'UTC-00:00'. by Alexander Belopolsky · 9 years ago
  79. 8820a35 Issue #23517: Skip a datetime test on Windows by Victor Stinner · 9 years ago
  80. adfefa5 Issue #23517: Fix implementation of the ROUND_HALF_UP rounding mode in by Victor Stinner · 9 years ago
  81. 2ec5bd6 Issue #23517: fromtimestamp() and utcfromtimestamp() methods of by Victor Stinner · 9 years ago
  82. 2ec5587 Issue #23517: datetime.timedelta constructor now rounds microseconds to nearest by Victor Stinner · 9 years ago
  83. 38c707e Issue #21741: Update 147 test modules to use test discovery. by Zachary Ware · 9 years ago
  84. 184291a Fixes #23521: Corrected pure python implementation of timedelta division. by Alexander Belopolsky · 10 years ago
  85. 24d3dee Fixes #23521: Corrected pure python implementation of timedelta division. by Alexander Belopolsky · 10 years ago
  86. 08448a1 Issue #23326: Removed __ne__ implementations. Since fixing default __ne__ by Serhiy Storchaka · 10 years ago
  87. 65ee467 Issue #22777: Test pickling with all protocols. by Serhiy Storchaka · 10 years ago
  88. bad1257 Issue #22777: Test pickling with all protocols. by Serhiy Storchaka · 10 years ago
  89. 392f413 Make test_datetime a better citizen (issue #22540) by Antoine Pitrou · 10 years ago
  90. 6c7a418 Closes issue #20858: Enhancements/fixes to pure-python datetime module by Alexander Belopolsky · 10 years ago
  91. a22d823 merge by Raymond Hettinger · 10 years ago
  92. 5a2146a Issue #22044: Fixed premature DECREF in call_tzinfo_method. by Raymond Hettinger · 10 years ago
  93. ee6bdc0 remove the ability of datetime.time to be considered false (closes #13936) by Benjamin Peterson · 11 years ago
  94. 101d9e7 Issue 19572: More silently skipped tests explicitly skipped. by Zachary Ware · 11 years ago
  95. 9fe6d86 Issue 19572: More silently skipped tests explicitly skipped. by Zachary Ware · 11 years ago
  96. 9289713 Issue #19605: Use specific asserts in datetime tests by Serhiy Storchaka · 11 years ago
  97. 3df4dcc Issue #19605: Use specific asserts in datetime tests by Serhiy Storchaka · 11 years ago
  98. a7e7497 #18466: merge with 3.3. by Ezio Melotti · 11 years ago
  99. 85a8629 #18466: fix more typos. Patch by Févry Thibault. by Ezio Melotti · 11 years ago
  100. 790d269 Fixes #8860: Round half-microseconds to even in the timedelta constructor. by Alexander Belopolsky · 11 years ago