Strip trailing whitespace.
authorW. Trevor King <wking@tremily.us>
Tue, 16 Oct 2012 18:06:34 +0000 (14:06 -0400)
committerW. Trevor King <wking@tremily.us>
Tue, 16 Oct 2012 18:06:34 +0000 (14:06 -0400)
doc/demo/insn.py
pycomedi/command.pyx
pycomedi/constant.pyx
pycomedi/subdevice.pyx

index c45b67e6a92f89134753407475a5e480975de718..aa29958f4177120be28e840f1cc60fca1c87fa47 100755 (executable)
@@ -67,7 +67,7 @@ def run(filename, subdevice, channel, range, aref, num_scans):
     t1 = insns[0].data[0] + insns[1].data[1]/1e6
     t2 = insns[2].data[0] + insns[2].data[1]/1e6
     return (t1, insns[1].data, t2)
-    
+
 def display(t1, data, t2):
     _LOG.info('initial time: {}'.format(t1))
     _LOG.info('final time:   {}'.format(t2))
index 7a538356d63a8ad4558a3607733d113c707f9305..8b087389f1f2fe7accda20a70bd9d7edf028e199 100644 (file)
@@ -29,7 +29,7 @@ import constant as _constant
 cdef class Command (object):
     """A Comedi command
 
-    >>> from .constant import AREF, CMDF, TRIG_SRC    
+    >>> from .constant import AREF, CMDF, TRIG_SRC
     >>> from .channel import AnalogChannel
     >>> from .chanspec import ChanSpec
     >>> from .device import Device
index b82dc975c01db32ee1aefdfebec4a729d7a7e752..196650aef5e36434d53d278e1888af4500bbf282 100644 (file)
@@ -451,7 +451,7 @@ UNIT = _Enum('unit', 'UNIT_', translation={'mA':'mA'})
 # The mA translation avoids lowercasing to 'ma'.
 UNIT.append(_NamedInt(
         name='external',
-        value=_comedi.RF_EXTERNAL, 
+        value=_comedi.RF_EXTERNAL,
         doc=('RF_EXTERNAL (value unit is defined by an external reference '
              'channel)')))
 
index 5735fc02eb5d42ad57cbfc9f078873063164d487..82febcb2a4ed503a547f5b65cf038691486de225 100644 (file)
@@ -259,7 +259,7 @@ cdef class StreamingSubdevice (Subdevice):
         of the subdevice's supported trigger sources.  Other elements
         in the structure are undefined.
         """
-        cdef _command.Command cmd        
+        cdef _command.Command cmd
         cmd = _command.Command()
         ret = _comedilib_h.comedi_get_cmd_src_mask(
             self.device.device, self.index, cmd.get_comedi_cmd_pointer())
@@ -284,7 +284,7 @@ cdef class StreamingSubdevice (Subdevice):
         Note that the `ChanSpec` instances in `cmd.chanlist` are not
         initialized to reasonable values.
         """
-        cdef _command.Command cmd        
+        cdef _command.Command cmd
         cmd = _command.Command()
         ret = _comedilib_h.comedi_get_cmd_generic_timed(
             self.device.device, self.index, cmd.get_comedi_cmd_pointer(),