Home | History | Annotate | Download | only in serial

Lines Matching refs:Serial

2 # Python Serial Port Extension for Win32, Linux, BSD, Jython
3 # serial driver for win32
12 from serial import win32
14 from serial.serialutil import *
23 """Serial port implementation for Win32 based on ctypes."""
243 """Read size bytes from the serial port. If a timeout is set it may
278 """Output the given string over the serial port."""
432 # assemble Serial class with the platform specific implementation and the base
439 class Serial(Win32Serial, FileLike):
443 class Serial(Win32Serial, io.RawIOBase):
449 s = Serial(0)
452 s = Serial()