## Feature <!-- What Python feature is missing from RustPython? Give a short description of the feature and how you ran into its absence. --> ```python class A: def f(self): nonlocal __class__ __class__ = int ``` This is legal code in Python but raising error in RustPython: ``` SyntaxError: no binding for nonlocal '__class__' found at line 0 column 0 ``` ## Python Documentation <!-- Give a link to the feature in the CPython documentation (https://docs.python.org/3/) in order to assist in its implementation. -->