Kludge Tracker: Gnuradio - v3.4.0-101-g7e2b45b
Parent Directory
(gnuradio/gr-howto-write-a-block)
Kludge Summary of gnuradio/gr-howto-write-a-block/python
| Total Kludges |
2 |
| Total Subdirs |
0 |
All Directories within gnuradio/gr-howto-write-a-block/python
All Files within gnuradio/gr-howto-write-a-block/python
Kludge Snippets in gnuradio/gr-howto-write-a-block/python
gnuradio/gr-howto-write-a-block/python/__init__.py
| PyFlakes |
redefinition of unused '_RTLD_GLOBAL' from line 26 |
| Committer |
Johnathan Corgan |
| Commit ID |
5d80acab66a91a6c7bc476761f857d5e876e8bcc |
25 try:
26 from dl import RTLD_GLOBAL as _RTLD_GLOBAL
27 except ImportError:
28 try:
29 from DLFCN import RTLD_GLOBAL as _RTLD_GLOBAL
30 except ImportError:
31 pass
32
33 if _RTLD_GLOBAL != 0:
gnuradio/gr-howto-write-a-block/python/run_tests.in
| Category |
FIXME |
| Committer |
jcorgan |
| Commit ID |
5d69a524f81f234b3fbc41d49ba18d6f6886baba |
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