## Feature <!-- What Python feature is missing from RustPython? Give a short description of the feature and how you ran into its absence. --> ```python def a(d): locals()['d'] = 3 b = 3 + d print(b) a(21) ``` The code above generates the following error: (locals dict share actual local variable) ### Actual Result ```bash Finished dev [unoptimized + debuginfo] target(s) in 0.11s Running `target/debug/rustpython c.py` 6 ``` ### Expected Result ```bash 24 ```