unix-ffi/datetime: Add tzinfo.__new__ to make the package importable.

Add constructor to tzinfo class so that the package can be imported without
errors.
pull/419/head^2
Martin Komon 2021-05-30 23:41:50 +02:00 zatwierdzone przez Damien George
rodzic a3df207934
commit 2e91b92413
1 zmienionych plików z 4 dodań i 0 usunięć

Wyświetl plik

@ -958,6 +958,10 @@ class tzinfo:
__slots__ = ()
def __new__(self, *args, **kwargs):
"""Constructor."""
return object.__new__(self)
def tzname(self, dt):
"datetime -> string name of time zone."
raise NotImplementedError("tzinfo subclass must override tzname()")