summaryrefslogtreecommitdiff
path: root/serial/serialutil.py
diff options
context:
space:
mode:
authorChris Liechti <cliechti@gmx.net>2015-10-23 22:03:40 +0200
committerChris Liechti <cliechti@gmx.net>2015-10-23 22:03:40 +0200
commitcf29a3579cea2cc64c8c8f2db2d5e2c3cff965c3 (patch)
treedcfa07143804cd40325f1f993c4ade3620280182 /serial/serialutil.py
parent72726d743ad71aca54391128370fc41720f4ee09 (diff)
downloadpyserial-git-cf29a3579cea2cc64c8c8f2db2d5e2c3cff965c3.tar.gz
missing import, style updates
Diffstat (limited to 'serial/serialutil.py')
-rw-r--r--serial/serialutil.py13
1 files changed, 7 insertions, 6 deletions
diff --git a/serial/serialutil.py b/serial/serialutil.py
index 5fb5588..e2aa6cd 100644
--- a/serial/serialutil.py
+++ b/serial/serialutil.py
@@ -7,6 +7,7 @@
# SPDX-License-Identifier: BSD-3-Clause
import io
+import time
# ``memoryview`` was introduced in Python 2.7 and ``bytes(some_memoryview)``
# isn't returning the contents (very unfortunate). Therefore we need special
@@ -65,7 +66,7 @@ def to_bytes(seq):
return bytes(b)
# create control bytes
-XON = to_bytes([17])
+XON = to_bytes([17])
XOFF = to_bytes([19])
CR = to_bytes([13])
@@ -109,8 +110,8 @@ class SerialBase(io.RawIOBase):
576000, 921600, 1000000, 1152000, 1500000, 2000000, 2500000,
3000000, 3500000, 4000000)
BYTESIZES = (FIVEBITS, SIXBITS, SEVENBITS, EIGHTBITS)
- PARITIES = (PARITY_NONE, PARITY_EVEN, PARITY_ODD, PARITY_MARK, PARITY_SPACE)
- STOPBITS = (STOPBITS_ONE, STOPBITS_ONE_POINT_FIVE, STOPBITS_TWO)
+ PARITIES = (PARITY_NONE, PARITY_EVEN, PARITY_ODD, PARITY_MARK, PARITY_SPACE)
+ STOPBITS = (STOPBITS_ONE, STOPBITS_ONE_POINT_FIVE, STOPBITS_TWO)
def __init__(self,
port=None, # number of device, numbering starts at
@@ -139,7 +140,7 @@ class SerialBase(io.RawIOBase):
self._port = None # correct value is assigned below through properties
self._baudrate = None # correct value is assigned below through properties
self._bytesize = None # correct value is assigned below through properties
- self._parity = None # correct value is assigned below through properties
+ self._parity = None # correct value is assigned below through properties
self._stopbits = None # correct value is assigned below through properties
self._timeout = None # correct value is assigned below through properties
self._write_timeout = None # correct value is assigned below through properties
@@ -280,7 +281,8 @@ class SerialBase(io.RawIOBase):
timeout + 1 # test if it's a number, will throw a TypeError if not...
except TypeError:
raise ValueError("Not a valid timeout: %r" % (timeout,))
- if timeout < 0: raise ValueError("Not a valid timeout: %r" % (timeout,))
+ if timeout < 0:
+ raise ValueError("Not a valid timeout: %r" % (timeout,))
self._timeout = timeout
if self.is_open:
self._reconfigure_port()
@@ -461,7 +463,6 @@ class SerialBase(io.RawIOBase):
self.dsrdtr,
)
-
# - - - - - - - - - - - - - - - - - - - - - - - -
# compatibility with io library