MCPcopy Index your code
hub / github.com/RustPython/RustPython / __new__

Method __new__

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

Source from the content-addressed store, hash-verified

1353class IsoCalendarDate(tuple):
1354
1355 def __new__(cls, year, week, weekday, /):
1356 return super().__new__(cls, (year, week, weekday))
1357
1358 @property
1359 def year(self):

Callers

nothing calls this directly

Calls 2

superClass · 0.85
__new__Method · 0.45

Tested by

no test coverage detected