(self, shape: Shape = (), dflt: bool = _defvalue)
| 668 | _defvalue = False |
| 669 | |
| 670 | def __init__(self, shape: Shape = (), dflt: bool = _defvalue) -> None: |
| 671 | Atom.__init__(self, self.type, shape, dflt) |
| 672 | |
| 673 | |
| 674 | class IntAtom(Atom): # type: ignore[misc] |