Update datetime.md

This commit is contained in:
BLUELOVETH 2023-05-29 16:39:24 +08:00
parent 34f3845c9f
commit b778104a42

View File

@ -78,4 +78,7 @@ class timedelta:
def __le__(self, other: 'timedelta') -> bool: ...
def __gt__(self, other: 'timedelta') -> bool: ...
def __ge__(self, other: 'timedelta') -> bool: ...
class timezone:
def __init__(self, delta: timedelta): ...
```