We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 459e29e commit 83b90c5Copy full SHA for 83b90c5
Tools/gdb/libpython.py
@@ -742,7 +742,8 @@ def iteritems(self):
742
if has_values:
743
values = values['values']
744
745
- yield from items_from_keys_and_values(keys, values)
+ for item in items_from_keys_and_values(keys, values):
746
+ yield item
747
return
748
entries, nentries = self._get_entries(keys)
749
for i in safe_range(nentries):
@@ -2010,7 +2011,7 @@ def move_in_stack(move_up):
2010
2011
print('Unable to find an older python frame')
2012
else:
2013
print('Unable to find a newer python frame')
-
2014
+
2015
2016
class PyUp(gdb.Command):
2017
'Select and print all python stack frame in the same eval loop starting from the one that called this one (if any)'
0 commit comments