blob: fcdf51b7aabdf246a5b49b27196137bb060471ae (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
|
Version 1.0 13 Feb 2002
First public release.
Split from the pybsl application (see mspgcc.sourceforge.net)
New Features:
- Added Jython support
Version 1.1 14 Feb 2002
Bugfixes:
- Win32, when not specifying a timeout
- Typos in the Docs
New Features:
- added serialutil which provides a base class for the Serial
objects.
- readline, readlines, writelines and flush are now supported
see README.txt for deatils.
Version 1.11 14 Feb 2002
Same as 1.1 but added missing files.
Version 1.12 18 Feb 2002
Removed unneded constants to fix RH7.x problems.
Version 1.13 09 Apr 2002
Added alternate way for enabling rtscts (CNEW_RTSCTS is tried too)
If port opening fails, a SerialException is raised on all platforms
Version 1.14 29 May 2002
added examples to archive
added non-blocking mode for timeout=0 (tnx Mat Martineau)
Bugfixes:
- win32 does now return the remaining characters on timeout
Version 1.15 04 Jun 2002
Bugfixes (win32):
- removed debug messages
- compatibility to win9x improved
Version 1.16 02 Jul 2002
added implementation of RI and corrected RTS/CTS on Win32
Version 1.17 03 Jul 2002
silly mix of two versions in win32 code corrected
Version 1.18 06 Dec 2002
Bugfixes (general):
- remove the mapping of flush to the destructive flushOutput as this
is not the expected behaviour
- readline: EOL character for lines can be chosen idea by John Florian
Bugfixes (posix):
- cygwin port numbering fixed
- test each and every constant for it's existence in termios module,
use default if not existent (fix for Bug item #640214)
- wrong exception on nonexitstent ports with /dev file. bug report
by Louis Cordier
Bugfixes (win32):
- RTS/CTS handling as sugested in Bug #635072
- bugfix of timeouts brought up by Markus Hoffrogge
Version 1.19 19 Mar 2003
Bugfixes (posix):
- removed dgux entry which actualy had a wrong comment and is probably not in use anywhere
Bugfixes (win32):
- added int() conversion, [Bug 702120]
- remove code to set control lines in close methond of win32 version. [Bug 669625]
Version 1.20 28 Aug 2003
added serial.device() for all platforms
Bugfixes (win32):
- don't recreate opverlaped structures and events on each read/write
- don't set unneded event masks
- dont use DOS device names for ports > 9
- remove send timeout (its not used in the linux impl. anyway)
Version 1.21 30 sep 2003
Bugfixes (win32):
- name for COM10 was not built correctly, found by Norm Davis
|