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

Class C

Lib/test/test_dataclasses/__init__.py:2708–2709  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2706 # Test a class with recursive child
2707 @dataclass
2708 class C:
2709 recursive: object = ...
2710 c = C()
2711 c.recursive = c
2712 self.assertEqual(c, c)

Calls

no outgoing calls