bpo-38155: Add __all__ to datetime module (GH-16203)

https://bugs.python.org/issue38155
This commit is contained in:
t k 2019-09-19 09:34:41 -04:00 committed by Paul Ganssle
parent 9fdc64cf12
commit 96b1c59c71
3 changed files with 11 additions and 0 deletions

View file

@ -4,6 +4,10 @@ See http://www.iana.org/time-zones/repository/tz-link.html for
time zone and DST data sources.
"""
__all__ = ("date", "datetime", "time", "timedelta", "timezone", "tzinfo",
"MINYEAR", "MAXYEAR")
import time as _time
import math as _math
import sys