[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Commit-gnuradio] [gnuradio] 01/01: trellis: remove import of fsm_utils
From: |
git |
Subject: |
[Commit-gnuradio] [gnuradio] 01/01: trellis: remove import of fsm_utils from __init__.py for gr-trellis. |
Date: |
Tue, 30 Dec 2014 23:42:34 +0000 (UTC) |
This is an automated email from the git hooks/post-receive script.
trondeau pushed a commit to branch master
in repository gnuradio.
commit c67281b69d115e778e9aa5f04e431e032c59b512
Author: Tom Rondeau <address@hidden>
Date: Tue Dec 30 18:38:01 2014 -0500
trellis: remove import of fsm_utils from __init__.py for gr-trellis.
fsm_utils uses scipy, which is not a required dependency. Adding this to
the trellis import then won't work if you don't have scipy.
These imports work:
from gnuradio.trellis.fsm_utils as fu
from gnuradio.trells import fsm_utils
This will not:
from gnuradio import trellis
trellis.fsm_utils.*
---
gr-trellis/python/trellis/__init__.py | 1 -
1 file changed, 1 deletion(-)
diff --git a/gr-trellis/python/trellis/__init__.py
b/gr-trellis/python/trellis/__init__.py
index 662aa58..a6b5ed0 100644
--- a/gr-trellis/python/trellis/__init__.py
+++ b/gr-trellis/python/trellis/__init__.py
@@ -33,4 +33,3 @@ except ImportError:
from trellis_swig import *
# import any pure python here
-import fsm_utils