Kludge Tracker: Gnuradio - v3.4.0-101-g7e2b45b
Parent Directory
(gnuradio/volk)
Kludge Summary of gnuradio/volk/python
| Total Kludges |
3 |
| Total Subdirs |
0 |
All Directories within gnuradio/volk/python
All Files within gnuradio/volk/python
Kludge Snippets in gnuradio/volk/python
gnuradio/volk/python/__init__.py
| PyFlakes |
redefinition of unused '_RTLD_GLOBAL' from line 28 |
| Committer |
Tom Rondeau |
| Commit ID |
239144659b29c0a5ecd83a34e0e57387a1060ed7 |
27 try:
28 from dl import RTLD_GLOBAL as _RTLD_GLOBAL
29 except ImportError:
30 try:
31 from DLFCN import RTLD_GLOBAL as _RTLD_GLOBAL
32 except ImportError:
33 pass
34
35 if _RTLD_GLOBAL != 0:
gnuradio/volk/python/run_tests.in
| Category |
FIXME |
| Committer |
Tom Rondeau |
| Commit ID |
239144659b29c0a5ecd83a34e0e57387a1060ed7 |
17 # Where to look in the src tree for hand written python code
18 py=@abs_top_srcdir@/python
19
20 # Where to look for installed GNU Radio python modules
21 # FIXME this is wrong on a distcheck. We really need to ask gnuradio-core
22 # where it put its python files.
23 installed_pythondir=@pythondir@
24 installed_pyexecdir=@pyexecdir@
25
gnuradio/volk/python/volk_square_ff.i
| Category |
Magic |
| Committer |
Tom Rondeau |
| Commit ID |
239144659b29c0a5ecd83a34e0e57387a1060ed7 |
22 /*
23 * First arg is the package prefix.
24 * Second arg is the name of the class minus the prefix.
25 *
26 * This does some behind-the-scenes magic so we can
27 * access gr_example_square_ff from python as howto.square_ff
28 */
29 GR_SWIG_BLOCK_MAGIC(volk,square_ff);
30