Nick Coghlan <ncogh...@gmail.com> added the comment:

No, as locals() never returns the write-through proxy in the latest version of 
the PEP - it only ever returns the dynamic snapshot namespace (retrieving it 
from the proxy if necessary).

To get access to the write-through proxy in Python level code, you have to 
access frame.f_locals directly (which trace functions will do by necessity, 
since that's the only way they have to get at the function locals).

----------

_______________________________________
Python tracker <rep...@bugs.python.org>
<https://bugs.python.org/issue30744>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to