inducer / pudb

Full-screen console debugger for Python
https://documen.tician.de/pudb/
Other
2.99k stars 230 forks source link

Do not accidentally repeat similar variable names at top #425

Closed mvanderkamp closed 3 years ago

mvanderkamp commented 3 years ago

This fixes a bug where if you have a variable 'foo' and another variable 'foobar', and use the '@' command to repeat 'foo' at the top of the variable list, 'foobar' would also get repeated.

inducer commented 3 years ago

LGTM. Thanks!