summaryrefslogtreecommitdiff
path: root/grc/python/Port.py
diff options
context:
space:
mode:
authorJohnathan Corgan <jcorgan@corganenterprises.com>2012-08-28 12:52:09 -0700
committerJohnathan Corgan <jcorgan@corganenterprises.com>2012-08-28 12:52:09 -0700
commit5892c29ee0509ff8aa226f14da524f7ec30f9654 (patch)
tree759624a4c9f9b5d6c2e2da13906be99aebf25152 /grc/python/Port.py
parent7adff515181de5cfbd7392d934cac9083a8a6a58 (diff)
parentfc4d37062c46886d3bc1fb0b6c3626d779be4ecd (diff)
Merge remote branch 'reynwar/comments_next' into next
Conflicts: gr-digital/include/digital_constellation.h gr-digital/python/bpsk.py gr-digital/python/qpsk.py
Diffstat (limited to 'grc/python/Port.py')
-rw-r--r--grc/python/Port.py20
1 files changed, 14 insertions, 6 deletions
diff --git a/grc/python/Port.py b/grc/python/Port.py
index 9f8b50d052..0e7051c7c0 100644
--- a/grc/python/Port.py
+++ b/grc/python/Port.py
@@ -84,9 +84,11 @@ class Port(_Port, _GUIPort):
def __init__(self, block, n, dir):
"""
Make a new port from nested data.
- @param block the parent element
- @param n the nested odict
- @param dir the direction
+
+ Args:
+ block: the parent element
+ n: the nested odict
+ dir: the direction
"""
self._n = n
if n['type'] == 'msg': n['key'] = 'msg'
@@ -163,7 +165,9 @@ class Port(_Port, _GUIPort):
"""
Get the vector length.
If the evaluation of vlen cannot be cast to an integer, return 1.
- @return the vector length or 1
+
+ Returns:
+ the vector length or 1
"""
vlen = self.get_parent().resolve_dependencies(self._vlen)
try: return int(self.get_parent().get_parent().evaluate(vlen))
@@ -174,7 +178,9 @@ class Port(_Port, _GUIPort):
Get the number of ports.
If already blank, return a blank
If the evaluation of nports cannot be cast to an integer, return 1.
- @return the number of ports or 1
+
+ Returns:
+ the number of ports or 1
"""
nports = self.get_parent().resolve_dependencies(self._nports)
#return blank if nports is blank
@@ -190,7 +196,9 @@ class Port(_Port, _GUIPort):
"""
Get the color that represents this port's type.
Codes differ for ports where the vec length is 1 or greater than 1.
- @return a hex color code.
+
+ Returns:
+ a hex color code.
"""
try:
color = Constants.TYPE_TO_COLOR[self.get_type()]