Xavier de Gaye added the comment:

This patch fixes the problems raised in this issue and allows accessing the 
globals at the Pdb prompt with the globals() dictionary:

(Pdb) list
  1     y = 2
  2
  3     def f():
  4         y = 9
  5         z = 10
  6  ->     import pdb; pdb.set_trace();
  7     f()
[EOF]
(Pdb) globals()['y']
2

----------
Added file: http://bugs.python.org/file45509/free_variables.patch

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

Reply via email to