~ubuntu-branches/ubuntu/trusty/gnuradio/trusty

« back to all changes in this revision

Viewing changes to gnuradio-core/src/tests/test_buffers.py

  • Committer: Bazaar Package Importer
  • Author(s): Kamal Mostafa
  • Date: 2010-03-13 07:46:01 UTC
  • mfrom: (2.1.2 sid)
  • Revision ID: james.westby@ubuntu.com-20100313074601-zjsa893a87bozyh7
Tags: 3.2.2.dfsg-1ubuntu1
* Fix build for Ubuntu lucid (LP: #260406)
  - add binary package dep for libusrp0, libusrp2-0: adduser
  - debian/rules clean: remove pre-built Qt moc files

Show diffs side-by-side

added added

removed removed

Lines of Context:
43
43
#$ cat /proc/sys/kernel/shmmax
44
44
#300000000
45
45
 
46
 
class my_graph(gr.flow_graph):
 
46
class my_graph(gr.top_block):
47
47
 
48
48
    def __init__(self, seconds,history,output_multiple):
49
 
        gr.flow_graph.__init__(self)
 
49
        gr.top_block.__init__(self)
50
50
 
51
51
        parser = OptionParser(option_class=eng_option)
52
52
        parser.add_option("-O", "--audio-output", type="string", default="",