diff options
author | Josh Morman <jmorman@perspectalabs.com> | 2021-02-15 10:42:16 -0500 |
---|---|---|
committer | Martin Braun <martin@gnuradio.org> | 2021-02-18 12:48:11 -0800 |
commit | 4e48bc34a30f6671197294c99a259f1fcbc0bf8f (patch) | |
tree | f50f060e31bb92181145c87f44e15961c3b9a434 /gnuradio-runtime/python/gnuradio/gr/bindings/block_python.cc | |
parent | 80d96134f29bd90eaa9df62989365d095bbfc302 (diff) |
pybind: remove forecast from python bindings
There is no scenario that a block or app should be calling forecast over
the python interface. This is only called by the scheduler, and for
python blocks would pass through the gateway interface.
Signed-off-by: Josh Morman <jmorman@perspectalabs.com>
Diffstat (limited to 'gnuradio-runtime/python/gnuradio/gr/bindings/block_python.cc')
-rw-r--r-- | gnuradio-runtime/python/gnuradio/gr/bindings/block_python.cc | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/gnuradio-runtime/python/gnuradio/gr/bindings/block_python.cc b/gnuradio-runtime/python/gnuradio/gr/bindings/block_python.cc index c180529028..78c5b03cfe 100644 --- a/gnuradio-runtime/python/gnuradio/gr/bindings/block_python.cc +++ b/gnuradio-runtime/python/gnuradio/gr/bindings/block_python.cc @@ -66,13 +66,6 @@ void bind_block(py::module& m) .def("fixed_rate", &block::fixed_rate, D(block, fixed_rate)) - .def("forecast", - &block::forecast, - py::arg("noutput_items"), - py::arg("ninput_items_required"), - D(block, forecast)) - - .def("general_work", &block::general_work, py::arg("noutput_items"), |