mirror of https://github.com/python/cpython
Docs: Fix typo in datetime.tzinfo docstring (#107257)
Co-authored-by: Paul Ganssle <1377457+pganssle@users.noreply.github.com> Co-authored-by: Hugo van Kemenade <hugovk@users.noreply.github.com>
This commit is contained in:
parent
f0f96a9f40
commit
60a9eea3f5
|
@ -1238,7 +1238,7 @@ date.resolution = timedelta(days=1)
|
|||
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__ = ()
|
||||
|
||||
|
|
Loading…
Reference in New Issue