From 32eafeca487173136cff654d36dfa311482a1315 Mon Sep 17 00:00:00 2001 From: cliechti Date: Wed, 21 Jul 2010 23:28:15 +0000 Subject: - minor updates - release date --- pyserial/CHANGES.txt | 9 ++++++--- 1 file 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 +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) -- cgit v1.2.1