diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2020-05-22 22:30:47 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-22 22:30:47 (GMT) |
commit | c1d7768ca88e6b32f91cce08362fc355cf35c264 (patch) | |
tree | 0189182b140e8165797ae8fa9376eba82bff7a7b | |
parent | 1e5cf949ce36b6fe45db0e5e4a26c856c3b44278 (diff) | |
download | cpython-c1d7768ca88e6b32f91cce08362fc355cf35c264.zip cpython-c1d7768ca88e6b32f91cce08362fc355cf35c264.tar.gz cpython-c1d7768ca88e6b32f91cce08362fc355cf35c264.tar.bz2 |
Reword aware/naive introduction sentence (GH-20175)
This is more informative and avoids the question of whether the period should go inside or outside the quotation marks.
See also GH-20007.
(cherry picked from commit 2e76820a50b8ce2a9a5f6cdef6cef1859a89c460)
Co-authored-by: Mathieu Dupuy <mathieu.dupuy@doctolib.com>
-rw-r--r-- | Doc/library/datetime.rst | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Doc/library/datetime.rst b/Doc/library/datetime.rst index 800361c..508bc88 100644 --- a/Doc/library/datetime.rst +++ b/Doc/library/datetime.rst @@ -35,7 +35,8 @@ on efficient attribute extraction for output formatting and manipulation. Aware and Naive Objects ----------------------- -Date and time objects may be categorized as "aware" or "naive". +Date and time objects may be categorized as "aware" or "naive" depending on +whether or not they include timezone information. With sufficient knowledge of applicable algorithmic and political time adjustments, such as time zone and daylight saving time information, |