BLUELOVETH 2 лет назад
Родитель
Сommit
b778104a42
1 измененных файлов с 3 добавлено и 0 удалено
  1. 3 0
      docs/modules/datetime.md

+ 3 - 0
docs/modules/datetime.md

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