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

Class C

Lib/test/test_dataclasses/__init__.py:2706–2707  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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

Calls

no outgoing calls