(self, attr)
| 2133 | # https://github.com/python/cpython/issues/91625 |
| 2134 | class Numbers: |
| 2135 | def __getattr__(self, attr): |
| 2136 | return int(attr.lstrip("_")) |
| 2137 | attrs = ", ".join(f"Z._{n:03d}" for n in range(280)) |
| 2138 | code = f"def number_attrs(Z):\n return [ {attrs} ]" |
| 2139 | ns = {} |