rustpython-pylib 0.5.0

A subset of the Python standard library for use with RustPython
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
"""Specific date/time and related types.

See https://data.iana.org/time-zones/tz-link.html for
time zone and DST data sources.
"""

try:
    from _datetime import *
except ImportError:
    from _pydatetime import *

__all__ = ("date", "datetime", "time", "timedelta", "timezone", "tzinfo",
           "MINYEAR", "MAXYEAR", "UTC")