summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorcliechti <cliechti@f19166aa-fa4f-0410-85c2-fa1106f25c8a>2010-07-21 23:28:15 +0000
committercliechti <cliechti@f19166aa-fa4f-0410-85c2-fa1106f25c8a>2010-07-21 23:28:15 +0000
commit32eafeca487173136cff654d36dfa311482a1315 (patch)
tree2809b9a7f8c1f54b6efbd0170e7920dc49f110bf
parent25375b5fdeb0e4141e07198bb754ffeaf24bf10b (diff)
downloadpyserial-git-32eafeca487173136cff654d36dfa311482a1315.tar.gz
- minor updates
- release date
-rw-r--r--pyserial/CHANGES.txt9
1 files changed, 6 insertions, 3 deletions
diff --git a/pyserial/CHANGES.txt b/pyserial/CHANGES.txt
index 6706f70..ec9eefc 100644
--- a/pyserial/CHANGES.txt
+++ b/pyserial/CHANGES.txt
@@ -314,7 +314,7 @@ New Features:
- experimental RFC-2217 server support (examples/rfc2217_server.py)
- add ``getSettingsDict`` and ``applySettingsDict`` serial object methods
- use a ``poll`` based implementation on Posix, instead of a ``select`` based,
- provides better error handling.
+ provides better error handling [removed again in later releases].
Bugfixes:
@@ -368,7 +368,7 @@ Bugfixes (win32):
- [Bug 2886763] hComPort doesn't get initialized for Serial(port=None)
-Version 2.5 <date>
+Version 2.5 2010-07-22
---------------------------
New Features:
@@ -379,7 +379,9 @@ New Features:
affects Win32 as on other platforms, that setting was ignored anyway.
- Improved xreadlines, it is now a generator function that yields lines as they
are received (previously it called readlines which would only return all
- lines read after a read-timeout).
+ lines read after a read-timeout). However xreadlines is deprecated an not
+ available when the io module is used. Use ``for line in Serial(...):``
+ instead.
Bugfixes:
@@ -393,4 +395,5 @@ Bugfixes (posix):
Bugfixes (win32):
- [Bug 2998169] Memory corruption at faster transmission speeds.
+ (bug introduced in 2.5-rc1)