diff options
author | cliechti <cliechti@f19166aa-fa4f-0410-85c2-fa1106f25c8a> | 2009-07-25 03:44:33 +0000 |
---|---|---|
committer | cliechti <cliechti@f19166aa-fa4f-0410-85c2-fa1106f25c8a> | 2009-07-25 03:44:33 +0000 |
commit | f81362e1e8eecba691ce30ea2ff2ecc8507639dc (patch) | |
tree | 2ca92284a842b5b2a9d85ac6f4c5073a3534da08 /documentation/pyserial.rst | |
parent | ff94563d7c82c3581eebf641ea95997616ce9918 (diff) | |
download | pyserial-git-f81362e1e8eecba691ce30ea2ff2ecc8507639dc.tar.gz |
- add more methods for file-like compatibility
- provide RawSerial when io library is present (not yet finished)
-> changes internal class hierarchy
-> renamed internal read/write -> _read/_write (FileLike resp. RawSerialBase provides read/write)
-> add test_rawio.py
- _write returns number of byte written
- set minimal python version to 2.3 due to basestring
- add "name" attribute
- documentation updates (new io stuff and VERSION, device())
Diffstat (limited to 'documentation/pyserial.rst')
-rw-r--r-- | documentation/pyserial.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/documentation/pyserial.rst b/documentation/pyserial.rst index 1622498..2153f91 100644 --- a/documentation/pyserial.rst +++ b/documentation/pyserial.rst @@ -28,7 +28,7 @@ The homepage is at http://pyserial.sf.net. Features ======== * Same class based interface on all supported platforms. -* Access to the port settings through Python 2.2+ properties. +* Access to the port settings through Python 2.3+ properties. * Port numbering starts at zero, no need to know the port name in the user program. * Port string (device name) can be specified if access through numbering is @@ -45,7 +45,7 @@ Features Requirements ============ -* Python 2.2.3 or newer +* Python 2.3 or newer * ctypes extensions on Windows (is in standard library since Python 2.5+) * "Java Communications" (JavaComm) or compatible extension for Java/Jython |