[3.11] Docs: Fix typo in datetime.tzinfo docstring (GH-107257) (#109055)

This commit is contained in:
Mikhail Samylov 2023-09-07 08:32:55 +03:00 committed by GitHub
parent 1ebe014d62
commit c70a29160a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -1223,7 +1223,7 @@ def __reduce__(self):
class tzinfo:
"""Abstract base class for time zone info classes.
Subclasses must override the name(), utcoffset() and dst() methods.
Subclasses must override the tzname(), utcoffset() and dst() methods.
"""
__slots__ = ()