MCPcopy Index your code
hub / github.com/python/cpython / __new__

Method __new__

Lib/_pydatetime.py:1370–1371  ·  view source on GitHub ↗
(cls, year, week, weekday, /)

Source from the content-addressed store, hash-verified

1368class IsoCalendarDate(tuple):
1369
1370 def __new__(cls, year, week, weekday, /):
1371 return super().__new__(cls, (year, week, weekday))
1372
1373 @property
1374 def year(self):

Callers

nothing calls this directly

Calls 2

superClass · 0.85
__new__Method · 0.45

Tested by

no test coverage detected