mirror of
https://github.com/python/cpython.git
synced 2025-08-04 17:08:35 +00:00
bpo-38155: Add __all__ to datetime module (GH-16203)
https://bugs.python.org/issue38155
This commit is contained in:
parent
9fdc64cf12
commit
96b1c59c71
3 changed files with 11 additions and 0 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue