From ac7550589736c8b0dbfcf6b72e17a667b9e52dba Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=B4me=20Lebleu?= Date: Mon, 29 Dec 2014 18:38:06 +0100 Subject: [PATCH] [fix] Move helpers.py to utils folder --- moulinette/{helpers.py => utils/stream.py} | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) rename moulinette/{helpers.py => utils/stream.py} (95%) diff --git a/moulinette/helpers.py b/moulinette/utils/stream.py similarity index 95% rename from moulinette/helpers.py rename to moulinette/utils/stream.py index 406e595d..b46ded26 100644 --- a/moulinette/helpers.py +++ b/moulinette/utils/stream.py @@ -1,8 +1,9 @@ -# -*- coding: utf-8 -*- - from threading import Thread from Queue import Queue, Empty + +# Read from a stream --------------------------------------------------- + class NonBlockingStreamReader: """A non-blocking stream reader