(self, key)
| 140 | # https://github.com/python/cpython/issues/91625 |
| 141 | class MyGlobals(dict): |
| 142 | def __missing__(self, key): |
| 143 | return int(key.removeprefix("_number_")) |
| 144 | |
| 145 | # Need more than 256 variables to use EXTENDED_ARGS |
| 146 | variables = 400 |
nothing calls this directly
no test coverage detected