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 can.ibanoglu
Recipients Jim.Jewett, can.ibanoglu, markroseman, python-dev, terry.reedy
Date 2015-08-19.16:29:52
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1440001792.8.0.513425038697.issue24790@psf.upfronthosting.co.za>
In-reply-to
Content
I have also prepared a patch for the second item but I don't know if I should regenerate the patch after you have committed the first patch so I'm sitting on it now. 

I also didn't update the ACKS and NEWS files, should I?

Here's what I did for the second item, just in case you spot something I shouldn't be doing:

         sublist = []
         if frame.f_globals is not frame.f_locals:
             item = VariablesTreeItem("<locals>", frame.f_locals, self.flist)
-            sublist.append(item)
-        item = VariablesTreeItem("<globals>", frame.f_globals, self.flist)
+        else:
+            item = VariablesTreeItem("<globals>", frame.f_globals, self.flist)
         sublist.append(item)
         return sublist
History
Date User Action Args
2015-08-19 16:29:52can.ibanoglusetrecipients: + can.ibanoglu, terry.reedy, markroseman, python-dev, Jim.Jewett
2015-08-19 16:29:52can.ibanoglusetmessageid: <1440001792.8.0.513425038697.issue24790@psf.upfronthosting.co.za>
2015-08-19 16:29:52can.ibanoglulinkissue24790 messages
2015-08-19 16:29:52can.ibanoglucreate