summaryrefslogtreecommitdiffstats
path: root/Lib/_pydatetime.py
Commit message (Collapse)AuthorAgeFilesLines
* gh-127553: Remove outdated TODO comment in _pydatetime (#127564)Beomsoo Kim2025-01-041-1/+0
|
* gh-126947: Typechecking for _pydatetime.timedelta.__new__ arguments (#126949)Beomsoo Kim2024-11-191-1/+13
| | | | Co-authored-by: sobolevn <mail@sobolevn.me> Co-authored-by: Peter Bierma <zintensitydev@gmail.com>
* gh-41431: Add `datetime.time.strptime()` and `datetime.date.strptime()` ↵Nice Zombies2024-09-251-1/+15
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | (#120752) * Python implementation * C implementation * Test `date.strptime` * Test `time.strptime` * 📜🤖 Added by blurb_it. * Update whatsnew * Update documentation * Add leap year note * Update 2024-06-19-19-53-42.gh-issue-41431.gnkUc5.rst * Apply suggestions from code review Co-authored-by: Bénédikt Tran <10796600+picnixz@users.noreply.github.com> * Remove parentheses * Use helper function * Remove bad return * Link to github issue * Fix directive * Apply suggestions from code review Co-authored-by: Paul Ganssle <1377457+pganssle@users.noreply.github.com> * Fix test cases --------- Co-authored-by: blurb-it[bot] <43283697+blurb-it[bot]@users.noreply.github.com> Co-authored-by: Bénédikt Tran <10796600+picnixz@users.noreply.github.com> Co-authored-by: Paul Ganssle <1377457+pganssle@users.noreply.github.com>
* gh-102450: Add ISO-8601 alternative for midnight to `fromisoformat()` calls. ↵TizzySaurus2024-09-251-3/+31
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | (#105856) * Add NEWS.d entry * Allow ISO-8601 24:00 alternative to midnight on datetime.time.fromisoformat() * Allow ISO-8601 24:00 alternative to midnight on datetime.datetime.fromisoformat() * Add NEWS.d entry * Improve error message when hour is 24 and minute/second/microsecond is not 0 * Add tests for 24:00 fromisoformat * Remove duplicate call to days_in_month() by storing in variable * Add Python implementation * Fix Lint * Fix differing error msg in datetime.fromisoformat implementations when 24hrs has non-zero time component(s) * Fix using time components inside tzinfo in Python implementation * Don't parse tzinfo in C implementation when invalid iso midnight * Remove duplicated variable in datetime test assertion line * Add self to acknowledgements * Remove duplicate NEWS entry * Linting * Add missing test case for when wrapping the year makes it invalid (too large)
* gh-123843: Remove broken links to the Zope DateTimeWiki (#123846)Adam Turner2024-09-091-5/+1
| | | Co-authored-by: Conrad Bhuiyan-Volkoff <hi@cbv.im>
* gh-122272: Guarantee specifiers %F and %C for datetime.strftime to be ↵blhsing2024-08-231-4/+21
| | | | 0-padded (GH-122436)
* gh-120713: Normalize year with century for datetime.strftime (GH-120820)blhsing2024-06-291-0/+19
|
* gh-120268: Prohibit passing ``None`` to ``_pydatetime.date.fromtimestamp`` ↵Kirill Podoprigora2024-06-081-0/+2
| | | | | (#120269) This makes the pure Python implementation consistent with the C implementation.
* gh-49766: Make date-datetime comparison more symmetric and flexible (GH-114760)Serhiy Storchaka2024-02-111-24/+11
| | | | | | | | | | | | | Now the special comparison methods like `__eq__` and `__lt__` return NotImplemented if one of comparands is date and other is datetime instead of ignoring the time part and the time zone or forcefully return "not equal" or raise TypeError. It makes comparison of date and datetime subclasses more symmetric and allows to change the default behavior by overriding the special comparison methods in subclasses. It is now the same as if date and datetime was independent classes.
* gh-106392: Fix inconsistency in deprecation warnings in datetime module ↵Serhiy Storchaka2024-01-301-3/+3
| | | | (GH-114761)
* gh-112451: Prohibit subclassing of datetime.timezone. (#114190)Mariusz Felisiak2024-01-261-0/+3
| | | This is consistent with C-extension datetime.timezone.
* gh-109495: Remove unused slots from the Python implementation of datetime ↵James Hilton-Balfe2023-09-291-1/+1
| | | | (GH-109494)
* Fix date.__repr__() docstring (#109422)Christopher Yeh2023-09-151-7/+3
|
* Docs: Fix typo in datetime.tzinfo docstring (#107257)Mikhail Samylov2023-09-061-1/+1
| | | | | Co-authored-by: Paul Ganssle <1377457+pganssle@users.noreply.github.com> Co-authored-by: Hugo van Kemenade <hugovk@users.noreply.github.com>
* gh-108751: Add copy.replace() function (GH-108752)Serhiy Storchaka2023-09-061-0/+6
| | | | | | | | | It creates a modified copy of an object by calling the object's __replace__() method. It is a generalization of dataclasses.replace(), named tuple's _replace() method and replace() methods in various classes, and supports all these stdlib classes.
* gh-106392: Fix inconsistency in deprecation warnings (#106436)William Andrea2023-09-011-2/+2
| | | They used "datetime" to refer to both the object and the module.
* GH-84976: Re-introduce `datetime.py` and fix reprsPaul Ganssle2023-05-031-29/+13
| | | | | Without the change to the reprs, pure-python classes would have a repr of `datetime._pydatetime.time`, etc.
* GH-84976: Move Lib/datetime.py to Lib/_pydatetimePaul Ganssle2023-05-031-0/+2663
This breaks the tests, but we are keeping it as a separate commit so that the move operation and editing of the moved files are separate, for a cleaner history.