summaryrefslogtreecommitdiff
path: root/README.txt
diff options
context:
space:
mode:
authorcliechti <cliechti@f19166aa-fa4f-0410-85c2-fa1106f25c8a>2002-12-06 00:21:52 +0000
committercliechti <cliechti@f19166aa-fa4f-0410-85c2-fa1106f25c8a>2002-12-06 00:21:52 +0000
commit9b55a5ee9d04446f74a4218505aa11939d7f4db7 (patch)
tree4cf4bff1a9fd0d005c2d63c2a18ddbe557f8d8d9 /README.txt
parent3966799612e0b896f05a81ac1d66ac34db649562 (diff)
downloadpyserial-9b55a5ee9d04446f74a4218505aa11939d7f4db7.tar.gz
prepare for release 1.18
git-svn-id: http://svn.code.sf.net/p/pyserial/code/trunk/pyserial@65 f19166aa-fa4f-0410-85c2-fa1106f25c8a
Diffstat (limited to 'README.txt')
-rw-r--r--README.txt7
1 files changed, 4 insertions, 3 deletions
diff --git a/README.txt b/README.txt
index d3022a9..5236941 100644
--- a/README.txt
+++ b/README.txt
@@ -25,7 +25,7 @@ Features
- The files in this package are 100% pure Python.
They depend on non standard but common packages on Windows (win32all) and
Jython (JavaComm). POSIX (Linux, BSD) uses only modules from the standard
- python distribution)
+ Python distribution)
- The port is set up for binary transmission. No NULL byte stripping, CR-LF
translation etc. (which are many times enabled for POSIX.) This makes this
module universally useful.
@@ -93,8 +93,9 @@ ser = serial.Serial(
rtscts=0, #enable RTS/CTS flow control
)
-The port is immediatley opened on object creation. Options:
-timeout=None # wait forever
+The port is immediately opened on object creation.
+Options for read timeout:
+timeout=None #wait forever
timeout=0 #non-blocking mode (return immediately on read)
timeout=x #set timeout to x seconds (float allowed)