modulator = gnuradio.blks2impl.d16psk.d16psk_mod(.....)
This would only work if each one of those tokens was actual a python module/package with an __init__.py in it. But since its not, you have to treat it like a directory structure:
from gnuradio.blks2impl.d16psk import d16psk_mod modulator = d16psk_mod(....) -Josh _______________________________________________ Discuss-gnuradio mailing list [email protected] http://lists.gnu.org/mailman/listinfo/discuss-gnuradio
