From 924831afcdb187b3de670be6fd1f6147d62be5cf Mon Sep 17 00:00:00 2001 From: jblum Date: Wed, 10 Sep 2008 01:23:21 +0000 Subject: Replaced """! with """. Exclamation mark showed in doxygen docs. git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@9549 221aa14e-8319-0410-a670-987f0aec2ac5 --- gr-wxgui/src/python/scope_window.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'gr-wxgui/src/python/scope_window.py') diff --git a/gr-wxgui/src/python/scope_window.py b/gr-wxgui/src/python/scope_window.py index f587f3447..2b220c9a7 100644 --- a/gr-wxgui/src/python/scope_window.py +++ b/gr-wxgui/src/python/scope_window.py @@ -70,11 +70,11 @@ DEFAULT_MARKER_TYPE = None # Scope window control panel ################################################## class control_panel(wx.Panel): - """! + """ A control panel with wx widgits to control the plotter and scope block. """ def __init__(self, parent): - """! + """ Create a new control panel. @param parent the wx parent window """ @@ -333,7 +333,7 @@ class scope_window(wx.Panel, pubsub.pubsub, common.prop_setter): #self.update_grid() def handle_msg(self, msg): - """! + """ Handle the message from the scope sink message queue. Plot the list of arrays of samples onto the grid. Each samples array gets its own channel. @@ -354,7 +354,7 @@ class scope_window(wx.Panel, pubsub.pubsub, common.prop_setter): self.frame_rate_ts = time.time() def handle_samples(self): - """! + """ Handle the cached samples from the scope input. Perform ac coupling, triggering, and auto ranging. """ @@ -449,7 +449,7 @@ class scope_window(wx.Panel, pubsub.pubsub, common.prop_setter): self.plotter.update() def update_grid(self, *args): - """! + """ Update the grid to reflect the current settings: xy divisions, xy offset, xy mode setting """ -- cgit