Jelle Zijlstra
2018-03-22 08:01:09 -07:00
committed by GitHub
parent 9a6a7a2e75
commit bbbffb5f4b
5 changed files with 23 additions and 2 deletions

View File

@@ -223,6 +223,9 @@ class datetime:
else:
@classmethod
def combine(cls, date: date, time: time) -> datetime: ...
if sys.version_info >= (3, 7):
@classmethod
def fromisoformat(cls, date_string: str) -> datetime: ...
def strftime(self, fmt: _Text) -> str: ...
if sys.version_info >= (3,):
def __format__(self, fmt: str) -> str: ...