summaryrefslogtreecommitdiff
path: root/grc/python/Connection.py
diff options
context:
space:
mode:
authorJohnathan Corgan <jcorgan@corganenterprises.com>2009-08-15 10:48:39 -0700
committerJohnathan Corgan <jcorgan@corganenterprises.com>2009-08-15 10:48:39 -0700
commit4edaf1e7fc05df0628c05785d5ede285a64670b0 (patch)
tree93497b08306b3df6a9a36c4c5adb63c61b5d4f3e /grc/python/Connection.py
parenta33d7c0df9dab57767c6b9376e6779a23217c1b9 (diff)
parent8e1a2c4ac1a43fd989c06856dae27b0c2559c6b3 (diff)
Merged branch 'msgq' from http://gnuradio.org/git/jblum.git
This adds the ability to GRC to gave blocks with message ports. Signed-off-by: Johnathan Corgan <jcorgan@corganenterprises.com>
Diffstat (limited to 'grc/python/Connection.py')
-rw-r--r--grc/python/Connection.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/grc/python/Connection.py b/grc/python/Connection.py
index d8a894bb17..5eba9f24dd 100644
--- a/grc/python/Connection.py
+++ b/grc/python/Connection.py
@@ -21,6 +21,9 @@ from .. base.Connection import Connection as _Connection
class Connection(_Connection):
+ def is_msg(self):
+ return self.get_source().get_type() == self.get_sink().get_type() == 'msg'
+
def validate(self):
"""
Validate the connections.