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

Class B

Lib/test/test_typing.py:6614–6617  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

6612class A:
6613 y: float
6614class B(A):
6615 x: ClassVar[Optional['B']] = None
6616 y: int
6617 b: int
6618class CSub(B):
6619 z: ClassVar['CSub'] = B()
6620class G(Generic[T]):

Calls

no outgoing calls