mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-09 05:24:52 +08:00
Use '...' instead of 'pass' for function bodies
This commit is contained in:
@@ -12,65 +12,65 @@ resolution = Undefined(object)
|
||||
class date(object):
|
||||
def __format__(a) -> unicode:
|
||||
raise ValueError()
|
||||
def __reduce__() -> tuple: pass
|
||||
def ctime() -> str: pass
|
||||
def __reduce__() -> tuple: ...
|
||||
def ctime() -> str: ...
|
||||
def fromordinal(a: int) -> object:
|
||||
raise ValueError()
|
||||
def fromtimestamp(a: float) -> object: pass
|
||||
def isocalendar() -> tuple: pass
|
||||
def isoformat() -> str: pass
|
||||
def isoweekday() -> int: pass
|
||||
def replace(*args, **kwargs) -> object: pass
|
||||
def strftime(format) -> object: pass
|
||||
def timetuple() -> object: pass
|
||||
def today() -> object: pass
|
||||
def toordinal() -> int: pass
|
||||
def weekday() -> int: pass
|
||||
def fromtimestamp(a: float) -> object: ...
|
||||
def isocalendar() -> tuple: ...
|
||||
def isoformat() -> str: ...
|
||||
def isoweekday() -> int: ...
|
||||
def replace(*args, **kwargs) -> object: ...
|
||||
def strftime(format) -> object: ...
|
||||
def timetuple() -> object: ...
|
||||
def today() -> object: ...
|
||||
def toordinal() -> int: ...
|
||||
def weekday() -> int: ...
|
||||
|
||||
class datetime(object):
|
||||
def __reduce__() -> tuple: pass
|
||||
def __reduce__() -> tuple: ...
|
||||
def astimezone(tz) -> object:
|
||||
raise ValueError()
|
||||
def combine(date, time) -> object: pass
|
||||
def ctime() -> str: pass
|
||||
def date() -> object: pass
|
||||
def dst() -> object: pass
|
||||
def fromtimestamp(timestamp: float, *args, **kwargs) -> object: pass
|
||||
def isoformat(*args, **kwargs) -> str: pass
|
||||
def now(*args, **kwargs) -> object: pass
|
||||
def replace(*args, **kwargs) -> object: pass
|
||||
def combine(date, time) -> object: ...
|
||||
def ctime() -> str: ...
|
||||
def date() -> object: ...
|
||||
def dst() -> object: ...
|
||||
def fromtimestamp(timestamp: float, *args, **kwargs) -> object: ...
|
||||
def isoformat(*args, **kwargs) -> str: ...
|
||||
def now(*args, **kwargs) -> object: ...
|
||||
def replace(*args, **kwargs) -> object: ...
|
||||
def strptime(a: str, b: str) -> object:
|
||||
raise ValueError()
|
||||
def time() -> object: pass
|
||||
def timetuple() -> object: pass
|
||||
def timetz() -> object: pass
|
||||
def tzname() -> object: pass
|
||||
def utcfromtimestamp(a: float) -> object: pass
|
||||
def utcnow() -> object: pass
|
||||
def utcoffset() -> object: pass
|
||||
def time() -> object: ...
|
||||
def timetuple() -> object: ...
|
||||
def timetz() -> object: ...
|
||||
def tzname() -> object: ...
|
||||
def utcfromtimestamp(a: float) -> object: ...
|
||||
def utcnow() -> object: ...
|
||||
def utcoffset() -> object: ...
|
||||
def utctimetuple() -> object:
|
||||
raise OverflowError()
|
||||
|
||||
class time(object):
|
||||
def __format__(a) -> unicode:
|
||||
raise ValueError()
|
||||
def __reduce__() -> tuple: pass
|
||||
def dst() -> object: pass
|
||||
def isoformat() -> str: pass
|
||||
def replace(*args, **kwargs) -> object: pass
|
||||
def strftime(format) -> object: pass
|
||||
def tzname() -> object: pass
|
||||
def utcoffset() -> object: pass
|
||||
def __reduce__() -> tuple: ...
|
||||
def dst() -> object: ...
|
||||
def isoformat() -> str: ...
|
||||
def replace(*args, **kwargs) -> object: ...
|
||||
def strftime(format) -> object: ...
|
||||
def tzname() -> object: ...
|
||||
def utcoffset() -> object: ...
|
||||
|
||||
class timedelta(object):
|
||||
def __reduce__() -> tuple: pass
|
||||
def total_seconds() -> int: pass
|
||||
def __reduce__() -> tuple: ...
|
||||
def total_seconds() -> int: ...
|
||||
|
||||
class tzinfo(object):
|
||||
def __reduce__() -> tuple: pass
|
||||
def dst(*args, **kwargs) -> object: pass
|
||||
def __reduce__() -> tuple: ...
|
||||
def dst(*args, **kwargs) -> object: ...
|
||||
def fromutc(*args, **kwargs) -> object:
|
||||
raise TypeError()
|
||||
raise ValueError()
|
||||
def tzname(*args, **kwargs) -> object: pass
|
||||
def utcoffset(*args, **kwargs) -> object: pass
|
||||
def tzname(*args, **kwargs) -> object: ...
|
||||
def utcoffset(*args, **kwargs) -> object: ...
|
||||
|
||||
Reference in New Issue
Block a user