Lines Matching defs:__new__
592 def __new__(cls, days=0, seconds=0, microseconds=0,
686 self = object.__new__(cls)
898 __new__()
923 def __new__(cls, year, month=None, day=None):
943 self = object.__new__(cls)
948 self = object.__new__(cls)
1286 def __new__(cls, year, week, weekday, /):
1287 return super().__new__(cls, (year, week, weekday))
1320 __new__()
1340 def __new__(cls, hour=0, minute=0, second=0, microsecond=0, tzinfo=None, *, fold=0):
1362 self = object.__new__(cls)
1369 self = object.__new__(cls)
1677 def __new__(cls, year, month=None, day=None, hour=0, minute=0, second=0,
1691 self = object.__new__(cls)
1699 self = object.__new__(cls)
2302 def __new__(cls, offset, name=_Omitted):
2319 self = tzinfo.__new__(cls)