mirror of
https://github.com/Mikaela/Limnoria.git
synced 2024-11-02 17:29:22 +01:00
Fix inspection of the stack if the 'self' object has no __dict__.
This commit is contained in:
parent
ee4690ea18
commit
84cad71cf5
@ -142,6 +142,7 @@ def collect_extra_debug_data():
|
|||||||
frame_locals = frame.f_locals
|
frame_locals = frame.f_locals
|
||||||
for inspected in ('self', 'cls'):
|
for inspected in ('self', 'cls'):
|
||||||
if inspected in frame_locals:
|
if inspected in frame_locals:
|
||||||
|
if frame_locals[inspected].__dict__:
|
||||||
for (key, value) in frame_locals[inspected].__dict__.items():
|
for (key, value) in frame_locals[inspected].__dict__.items():
|
||||||
frame_locals['%s.%s' % (inspected, key)] = value
|
frame_locals['%s.%s' % (inspected, key)] = value
|
||||||
for key, value in frame_locals.items():
|
for key, value in frame_locals.items():
|
||||||
|
Loading…
Reference in New Issue
Block a user