diff -r c02818d7e29f -r 7e61baa047f0 controls/DebugVariablePanel/DebugVariablePanel.py --- a/controls/DebugVariablePanel/DebugVariablePanel.py Mon Aug 14 22:30:41 2017 +0300 +++ b/controls/DebugVariablePanel/DebugVariablePanel.py Mon Aug 14 23:27:15 2017 +0300 @@ -58,10 +58,12 @@ # Scrollbar increment in pixel SCROLLBAR_UNIT = 10 + def compute_mask(x, y): return [(xp if xp == yp else "*") for xp, yp in zip(x, y)] + def NextTick(variables): next_tick = None for item, data in variables: @@ -78,12 +80,12 @@ # Debug Variable Graphic Panel Drop Target #------------------------------------------------------------------------------- -""" -Class that implements a custom drop target class for Debug Variable Graphic -Panel -""" class DebugVariableDropTarget(wx.TextDropTarget): + """ + Class that implements a custom drop target class for Debug Variable Graphic + Panel + """ def __init__(self, window): """ @@ -173,11 +175,11 @@ # Debug Variable Graphic Panel Class #------------------------------------------------------------------------------- -""" -Class that implements a Viewer that display variable values as a graphs -""" class DebugVariablePanel(wx.Panel, DebugViewer): + """ + Class that implements a Viewer that display variable values as a graphs + """ def __init__(self, parent, producer, window): """