Author: jcorgan
Date: 2007-10-22 12:27:34 -0600 (Mon, 22 Oct 2007)
New Revision: 6673

Modified:
   
gnuradio/branches/releases/3.1/gnuradio-core/src/python/gnuradio/gr/top_block.py
Log:
Applied changeset r6669 on trunk to release branch.

Modified: 
gnuradio/branches/releases/3.1/gnuradio-core/src/python/gnuradio/gr/top_block.py
===================================================================
--- 
gnuradio/branches/releases/3.1/gnuradio-core/src/python/gnuradio/gr/top_block.py
    2007-10-22 18:22:23 UTC (rev 6672)
+++ 
gnuradio/branches/releases/3.1/gnuradio-core/src/python/gnuradio/gr/top_block.py
    2007-10-22 18:27:34 UTC (rev 6673)
@@ -41,6 +41,12 @@
     def __getattr__(self, name):
        return getattr(self._tb, name)
 
+    def start(self):
+       self._tb.start()
+       
+    def stop(self):
+       self._tb.stop()
+
     def run(self):
         top_block_run_unlocked(self._tb)
 



_______________________________________________
Commit-gnuradio mailing list
[email protected]
http://lists.gnu.org/mailman/listinfo/commit-gnuradio

Reply via email to