From: W. Trevor King Date: Thu, 17 Jan 2013 13:49:01 +0000 (-0500) Subject: channel: Add docstring summaries to get_{hard,soft}cal_converter X-Git-Tag: 0.7~4 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=bc799c2383a3e56e4d9c19e5121ab73a2407d2f2;p=pycomedi.git channel: Add docstring summaries to get_{hard,soft}cal_converter --- diff --git a/pycomedi/channel.pyx b/pycomedi/channel.pyx index ef204c0..68520f3 100644 --- a/pycomedi/channel.pyx +++ b/pycomedi/channel.pyx @@ -386,7 +386,7 @@ cdef class AnalogChannel (Channel): cdef _comedilib_h.comedi_polynomial_t get_softcal_converter( self, direction, _Calibration calibration) except *: - """ + """Get a calibration polynomial for a software-calibrated channel `direction` should be a value from `constant.CONVERSION_DIRECTION`. """ @@ -403,7 +403,7 @@ cdef class AnalogChannel (Channel): cdef _comedilib_h.comedi_polynomial_t get_hardcal_converter( self, direction) except *: - """ + """Get a calibration polynomial for a hardware-calibrated channel `direction` should be a value from `constant.CONVERSION_DIRECTION`. """