From: W. Trevor King Date: Thu, 15 Mar 2012 13:45:57 +0000 (-0400) Subject: Add docstring to Channel.get_range. X-Git-Tag: 0.5~37 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=66f1a5298db8607165c38294b13c3e1883ce8555;p=pycomedi.git Add docstring to Channel.get_range. --- diff --git a/pycomedi/channel.pyx b/pycomedi/channel.pyx index 015635f..8da695c 100644 --- a/pycomedi/channel.pyx +++ b/pycomedi/channel.pyx @@ -97,6 +97,7 @@ cdef class Channel (object): return ret def get_range(self, index): + "`Range` instance for the `index`\ed range." return self._get_range(index) def _find_range(self, unit, min, max):