diff options
author | eb | 2008-02-08 04:36:24 +0000 |
---|---|---|
committer | eb | 2008-02-08 04:36:24 +0000 |
commit | 05005e3d3fad3c9baee9906714510b5d12e0fa6f (patch) | |
tree | 6f3785d80ac03b213dce984c9eb14be9b4c86571 /gnuradio-core/src/tests | |
parent | 42ad2adb86981f4488edbe33169683f787b807c3 (diff) | |
download | gnuradio-05005e3d3fad3c9baee9906714510b5d12e0fa6f.tar.gz gnuradio-05005e3d3fad3c9baee9906714510b5d12e0fa6f.tar.bz2 gnuradio-05005e3d3fad3c9baee9906714510b5d12e0fa6f.zip |
Removed gr.flow_graph, gr.hier_block and friends. From here on out
all work on the trunk must use gr.top_block and gr.hier_block2.
Merged eb/fg-no-more -r7602:7606 into trunk.
git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@7607 221aa14e-8319-0410-a670-987f0aec2ac5
Diffstat (limited to 'gnuradio-core/src/tests')
-rwxr-xr-x | gnuradio-core/src/tests/test_buffers.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gnuradio-core/src/tests/test_buffers.py b/gnuradio-core/src/tests/test_buffers.py index 49250ad98..186a60bb9 100755 --- a/gnuradio-core/src/tests/test_buffers.py +++ b/gnuradio-core/src/tests/test_buffers.py @@ -43,10 +43,10 @@ import sys #$ cat /proc/sys/kernel/shmmax #300000000 -class my_graph(gr.flow_graph): +class my_graph(gr.top_block): def __init__(self, seconds,history,output_multiple): - gr.flow_graph.__init__(self) + gr.top_block.__init__(self) parser = OptionParser(option_class=eng_option) parser.add_option("-O", "--audio-output", type="string", default="", |