summaryrefslogtreecommitdiff
path: root/gr-fft/python/fft
diff options
context:
space:
mode:
authorThomas Habets <thomas@habets.se>2020-08-29 22:35:50 +0100
committerMartin Braun <martin@gnuradio.org>2020-09-08 01:04:50 -0700
commit3ad6da0ee1ecd6b3b016d310f4d8fedff79c2914 (patch)
tree06c6632a2b178b80da747019100e9ebc68a4eb29 /gr-fft/python/fft
parentd2c9de98b52e7e9a4918190b1e7079496d2a13b6 (diff)
fft&filter: Remove malloc_complex/free
Diffstat (limited to 'gr-fft/python/fft')
-rw-r--r--gr-fft/python/fft/bindings/docstrings/fft_pydoc_template.h6
-rw-r--r--gr-fft/python/fft/bindings/fft_python.cc9
2 files changed, 1 insertions, 14 deletions
diff --git a/gr-fft/python/fft/bindings/docstrings/fft_pydoc_template.h b/gr-fft/python/fft/bindings/docstrings/fft_pydoc_template.h
index fabe5afd47..0f37f06b93 100644
--- a/gr-fft/python/fft/bindings/docstrings/fft_pydoc_template.h
+++ b/gr-fft/python/fft/bindings/docstrings/fft_pydoc_template.h
@@ -106,9 +106,3 @@ static const char* __doc_gr_fft_fft_real_rev_nthreads = R"doc()doc";
static const char* __doc_gr_fft_fft_real_rev_execute = R"doc()doc";
-
-
-static const char* __doc_gr_fft_malloc_complex = R"doc()doc";
-
-
-static const char* __doc_gr_fft_free = R"doc()doc";
diff --git a/gr-fft/python/fft/bindings/fft_python.cc b/gr-fft/python/fft/bindings/fft_python.cc
index 9e8a4e889a..268edfaa24 100644
--- a/gr-fft/python/fft/bindings/fft_python.cc
+++ b/gr-fft/python/fft/bindings/fft_python.cc
@@ -14,7 +14,7 @@
/* BINDTOOL_GEN_AUTOMATIC(0) */
/* BINDTOOL_USE_PYGCCXML(0) */
/* BINDTOOL_HEADER_FILE(fft.h) */
-/* BINDTOOL_HEADER_FILE_HASH(4402b26d42b6210cd744a09ce7f6ffd6) */
+/* BINDTOOL_HEADER_FILE_HASH(ebbb274b1b433908749981712d96b3e9) */
/***********************************************************************************/
#include <pybind11/complex.h>
@@ -153,11 +153,4 @@ void bind_fft(py::module& m)
.def("execute", &fft_real_rev::execute, D(fft_real_rev, execute))
;
-
-
- m.def(
- "malloc_complex", &::gr::fft::malloc_complex, py::arg("size"), D(malloc_complex));
-
-
- m.def("free", &::gr::fft::free, py::arg("b"), D(free));
}