summaryrefslogtreecommitdiffstats
path: root/Lib/test/datetimetester.py
Commit message (Expand)AuthorAgeFilesLines
* gh-108751: Add copy.replace() function (GH-108752)Serhiy Storchaka2023-09-061-56/+81
* GH-103944: Remove last use of `utcfromtimestamp` (#103995)Paul Ganssle2023-05-031-15/+20
* GH-84976: Move Lib/datetime.py to Lib/_pydatetimePaul Ganssle2023-05-031-1/+5
* GH-103857: Deprecate utcnow and utcfromtimestamp (#103858)Paul Ganssle2023-04-271-21/+47
* gh-83861: Fix datetime.astimezone() method (GH-101545)Alexander Belopolsky2023-04-191-0/+4
* Fix detection of presence of time.tzset (gh-101539) (#101540)Alexander Belopolsky2023-02-051-1/+1
* gh-85432: Harmonise parameter names between C and pure-Python implementations...Alex Waygood2022-12-221-0/+9
* bpo-41260: C impl of datetime.date.strftime() takes different keyword arg (GH...Zackery Spytz2022-11-251-0/+3
* gh-69142: add %:z strftime format code (gh-95983)TW2022-08-281-10/+11
* gh-91838: Resolve HTTP links which redirect to HTTPS (GH-95642)Serhiy Storchaka2022-08-041-1/+1
* gh-84623: Remove unused imports in tests (#93772)Victor Stinner2022-06-131-1/+0
* Check result of utc_to_seconds and skip fold probe in pure Python (#91582)Paul Ganssle2022-05-121-36/+92
* gh-80010: Expand fromisoformat to include most of ISO-8601 (#92177)Paul Ganssle2022-05-061-5/+246
* gh-91928: Add `datetime.UTC` alias for `datetime.timezone.utc` (GH-91973)Kabir Kwatra2022-05-031-1/+6
* bpo-26579: Add object.__getstate__(). (GH-2821)Serhiy Storchaka2022-04-061-2/+4
* bpo-40280: Detect presence of time.tzset and thread_time clock (GH-31898)Christian Heimes2022-03-151-0/+3
* bpo-46587: Skip tests if strftime does not support glibc extension (GH-31873)Christian Heimes2022-03-151-1/+2
* bpo-46198: rename duplicate tests and remove unused code (GH-30297)Nikita Sobolev2022-03-101-4/+0
* bpo-45668: Fix PGO tests without test extensions (GH-29315)Christian Heimes2021-11-011-1/+5
* Fix typos in the Lib directory (GH-28775)Christian Clauss2021-10-061-2/+2
* bpo-45060: Get rid of few uses of the equality operators with None (GH-28087)Serhiy Storchaka2021-08-311-1/+1
* bpo-43295: Fix error handling of datetime.strptime format string '%z' (GH-24627)Noor Michael2021-03-031-0/+1
* bpo-41966: Fix pickling pure datetime.time subclasses (GH-22731)scaramallion2020-10-181-0/+3
* bpo-30155: Add macros to get tzinfo from datetime instances (GH-21633)Zackery Spytz2020-09-231-4/+10
* bpo-37999: No longer use __int__ in implicit integer conversions. (GH-15636)Serhiy Storchaka2020-05-261-34/+12
* bpo-24416: Return named tuple from date.isocalendar() (GH-20113)Paul Ganssle2020-05-161-13/+38
* bpo-38155: Add __all__ to datetime module (GH-16203)t k2019-09-191-0/+6
* bpo-35066: Make trailing percent test more portable. (GH-15907)Benjamin Peterson2019-09-111-4/+9
* Skip zoneinfo tests on VxWorks (#13535)hliu02019-09-101-0/+2
* bpo-15999: Clean up of handling boolean arguments. (GH-15610)Serhiy Storchaka2019-09-011-8/+8
* bpo-36833: Add tests for Datetime C API Macros (GH-14842)Joannah Nanjekye2019-08-291-0/+59
* bpo-37372: Fix error unpickling datetime.time objects from Python 2 with seco...Justin Blanchard2019-08-291-9/+18
* bpo-37915: Fix comparison between tzinfo objects and timezone objects (GH-15390)Pablo Galindo2019-08-221-0/+5
* bpo-37642: Update acceptable offsets in timezone (GH-14878)Ngalim Siregar2019-08-091-0/+25
* bpo-37685: Fixed comparisons of datetime.timedelta and datetime.timezone. (GH...Serhiy Storchaka2019-08-041-44/+30
* bpo-37579: Improve equality behavior for pure Python datetime and time (GH-14...Xtreak2019-07-131-0/+20
* bpo-34903: Document that some strptime formats only require 1 digit (GH-14149)Mike Gleen2019-06-181-0/+35
* bpo-36782: Created C API wrappers and added missing tests for functions in th...Edison A2019-05-171-3/+94
* bpo-36766: Typos in docs and code comments (GH-13116)penguindustin2019-05-061-1/+1
* bpo-36004: Add date.fromisocalendar (GH-11888)Paul Ganssle2019-04-291-0/+76
* bpo-36025: Fix PyDate_FromTimestamp API (GH-11922)Paul Ganssle2019-04-271-0/+35
* bpo-36048: Use __index__() instead of __int__() for implicit conversion if av...Serhiy Storchaka2019-02-251-3/+4
* bpo-32417: Make timedelta arithmetic respect subclasses (#10902)Paul Ganssle2019-02-041-10/+73
* bpo-35066: _dateime.datetime.strftime copies trailing '%' (GH-10692)MichaelSaah2019-01-141-0/+11
* bpo-22005: Fixed unpickling instances of datetime classes pickled by Python 2...Serhiy Storchaka2018-12-071-0/+116
* bpo-35021: Fix assertion failures in _datetimemodule.c. (GH-10039)Serhiy Storchaka2018-11-201-6/+37
* bpo-34482: test datetime classes' handling of non-UTF-8-encodable strings (GH...Alexey Izbyshev2018-10-231-0/+40
* bpo-34454: Clean up datetime.fromisoformat surrogate handling (GH-8959)Paul Ganssle2018-10-221-0/+9
* bpo-34454: fix .fromisoformat() methods crashing on inputs with surrogate cod...Paul Ganssle2018-08-231-1/+8
* bpo-29097: Forego fold detection on windows for low timestamp values (GH-2385)Ammar Askar2018-07-251-1/+6