summaryrefslogtreecommitdiff
path: root/CHANGES.rst
diff options
context:
space:
mode:
authorChris Liechti <cliechti@gmx.net>2015-11-03 00:38:43 +0100
committerChris Liechti <cliechti@gmx.net>2015-11-03 00:38:43 +0100
commite192724bc6df96fcc142f0eddcf2cf5afbcd5c87 (patch)
treef23756c180a025c95f64967244ab37f153becef3 /CHANGES.rst
parenteef7923ad775151f75c9590b66960ac7ac36a825 (diff)
downloadpyserial-git-e192724bc6df96fcc142f0eddcf2cf5afbcd5c87.tar.gz
win32: fix minimal timeout issue
As pointed out by DavidHowlett in issue #27, timeouts < 0.001 are handled as blocking by pySerial but are rounded to 0 and the Windows API treats it as non-blocking. Therefore ensure a minimum of 1ms (not that it would make any sense to use such short timeouts anyway).
Diffstat (limited to 'CHANGES.rst')
-rw-r--r--CHANGES.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/CHANGES.rst b/CHANGES.rst
index 1cd49bc..b6f9332 100644
--- a/CHANGES.rst
+++ b/CHANGES.rst
@@ -566,5 +566,5 @@ Version 3.0b2 2015-11-xx
Bugfixes (win32):
-- [#27] fix race condition in ``read()``
+- [#27] fix race condition in ``read()``, fix minimal timeout issue