mirror of
https://github.com/RustPython/RustPython.git
synced 2026-06-02 19:39:49 +09:00
10 lines
268 B
Python
Vendored
10 lines
268 B
Python
Vendored
try:
|
|
from _datetime import *
|
|
from _datetime import __doc__
|
|
except ImportError:
|
|
from _pydatetime import *
|
|
from _pydatetime import __doc__
|
|
|
|
__all__ = ("date", "datetime", "time", "timedelta", "timezone", "tzinfo",
|
|
"MINYEAR", "MAXYEAR", "UTC")
|