From 5383c4185205e4f53a26483d81c4e92f39778fad Mon Sep 17 00:00:00 2001 From: cliechti Date: Thu, 17 Oct 2013 03:19:00 +0000 Subject: doc updates git-svn-id: http://svn.code.sf.net/p/pyserial/code/trunk/pyserial@482 f19166aa-fa4f-0410-85c2-fa1106f25c8a --- CHANGES.txt | 6 +++--- LICENSE.txt | 2 +- README.txt | 2 +- serial/serialcli.py | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/CHANGES.txt b/CHANGES.txt index c749814..a1d2b41 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -434,11 +434,11 @@ Bugfixes (win32): - Fix type definitions for 64 bit Windows compatibility -Version 2.7 2012-nn-nn +Version 2.7 2013-nn-nn --------------------------- - Win32: setRTS and setDTR can be called before the port is opened and it will set the initial state on port open. -- Posix: add platform specific method: outWaiting (already pesent for Win32) +- Posix: add platform specific method: outWaiting (already present for Win32) - Posix: rename flowControl to setXON to match name on Win32, add flowControlOut function - rfc2217: zero polls value (baudrate, data size, stop bits, parity) (Erik @@ -470,7 +470,7 @@ Bugfixes (posix): Bugfixes (win32): - [Bug 3444941] ctypes.WinError() unicode error -- [Bug 3550043] on Window in tools global name 'GetLastError' is not defined +- [Bug 3550043] on Windows in tools global name 'GetLastError' is not defined - [Bug pyserial:146] flush() does nothing in windows (despite docs) - [Bug pyserial:144] com0com ports ignored due to missing "friendly name" - [Bug pyserial:152] Cannot configure port, some setting was wrong. Can leave diff --git a/LICENSE.txt b/LICENSE.txt index 7bfac33..f604ea3 100644 --- a/LICENSE.txt +++ b/LICENSE.txt @@ -1,4 +1,4 @@ -Copyright (c) 2001-2011 Chris Liechti ; +Copyright (c) 2001-2013 Chris Liechti ; All Rights Reserved. This is the Python license. In short, you can use this product in diff --git a/README.txt b/README.txt index cf19511..4cf71ff 100644 --- a/README.txt +++ b/README.txt @@ -14,7 +14,7 @@ automatically selects the appropriate backend. - SVN repository: http://sourceforge.net/svn/?group_id=46487 - Download Page: http://sourceforge.net/project/showfiles.php?group_id=46487 -BSD license, (C) 2001-2012 Chris Liechti +BSD license, (C) 2001-2013 Chris Liechti Documentation diff --git a/serial/serialcli.py b/serial/serialcli.py index 2c811f5..19169a3 100644 --- a/serial/serialcli.py +++ b/serial/serialcli.py @@ -24,7 +24,7 @@ def as_byte_array(string): return sab([ord(x) for x in string]) # XXX will require adaption when run with a 3.x compatible IronPython class IronSerial(SerialBase): - """Serial port implemenation for .NET/Mono.""" + """Serial port implementation for .NET/Mono.""" BAUDRATES = (50, 75, 110, 134, 150, 200, 300, 600, 1200, 1800, 2400, 4800, 9600, 19200, 38400, 57600, 115200) -- cgit v1.2.1