diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2023-09-02 21:44:06 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-09-02 21:44:06 (GMT) |
commit | 70a378c88871b1cfac56cfdecde31a4adaac929a (patch) | |
tree | df8c69869102c88513b117e2ac8e29835d4395cc /Doc/library | |
parent | 246cb64984de988a5e53781f912ae7ba73365aca (diff) | |
download | cpython-70a378c88871b1cfac56cfdecde31a4adaac929a.zip cpython-70a378c88871b1cfac56cfdecde31a4adaac929a.tar.gz cpython-70a378c88871b1cfac56cfdecde31a4adaac929a.tar.bz2 |
[3.12] gh-105563: reference DateType in datetime's documentation (GH-105946) (#108789)
gh-105563: reference DateType in datetime's documentation (GH-105946)
(cherry picked from commit 8f9ea43ee805f98391f857397daac9df7ffa71cd)
Co-authored-by: TATHAGATA ROY <royzen9495@gmail.com>
Diffstat (limited to 'Doc/library')
-rw-r--r-- | Doc/library/datetime.rst | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Doc/library/datetime.rst b/Doc/library/datetime.rst index 400c369..04cc755 100644 --- a/Doc/library/datetime.rst +++ b/Doc/library/datetime.rst @@ -37,6 +37,10 @@ on efficient attribute extraction for output formatting and manipulation. Package `dateutil <https://dateutil.readthedocs.io/en/stable/>`_ Third-party library with expanded time zone and parsing support. + Package `DateType <https://pypi.org/project/datetype/>`_ + Third-party library that introduces distinct static types to e.g. allow static type checkers + to differentiate between naive and aware datetimes. + .. _datetime-naive-aware: Aware and Naive Objects |