This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author terry.reedy
Recipients Jim.Jewett, can.ibanoglu, markroseman, python-dev, terry.reedy
Date 2015-08-21.00:45:30
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1440117932.06.0.712670365624.issue24790@psf.upfronthosting.co.za>
In-reply-to
Content
I just realized that there is a slight but in the patch so far.  When a non-empty program runs, it necessarily executes at least one statement in the main module.  It will only execute anything else when there is a call. Therefore, the stack trace always begins in the main module and that line can be used to display globals, making the globals item under functions redundant.

However, if there is a call to a function in another module, there need not be a module level statement.  By removing the globals items for functions in other modules, the current patch as is will not allow viewing of globals in other modules. A possible solution is to add an expandable module item every time the module changes.

Mark and I would like to combine the StackViewer and Debugger UIs.  Essentially, a revised stackviewer pane would eventually become part of the debugger.  The Debugger avoids the intermediate +locals and +globals items of StackViewer by expanding both when an item is clicked.  However, the expansion is not added to the tree, but to the one locals box and the one (optional) globals box, both separate from and below the tree.

An alternate solution to the globals problem is to expand locals under a function when clicked on, as currently done with stackviewer, and expand globals to a globals box below the tree, as currently done with stackviewer.  I do not see much need to see the globals of different functions simultaneously (one can switch, as one must do not with Debugger).  I see more reason to see multiple locals of at the same time, and it also make sense to put locals right under each function.

Debugger already does item 8.
History
Date User Action Args
2015-08-21 00:45:32terry.reedysetrecipients: + terry.reedy, markroseman, python-dev, Jim.Jewett, can.ibanoglu
2015-08-21 00:45:32terry.reedysetmessageid: <1440117932.06.0.712670365624.issue24790@psf.upfronthosting.co.za>
2015-08-21 00:45:32terry.reedylinkissue24790 messages
2015-08-21 00:45:30terry.reedycreate