From 4d39065569a541712f2315f1c2f27ad408b0f319 Mon Sep 17 00:00:00 2001 From: Vita Smid Date: Tue, 15 Sep 2015 17:09:33 +0200 Subject: [PATCH] Change Queue.put return type to Future[None] --- stdlib/3.4/asyncio/queues.pyi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stdlib/3.4/asyncio/queues.pyi b/stdlib/3.4/asyncio/queues.pyi index dbf4b59a0..56c23b6ab 100644 --- a/stdlib/3.4/asyncio/queues.pyi +++ b/stdlib/3.4/asyncio/queues.pyi @@ -29,7 +29,7 @@ class Queue(Generic[T]): def empty(self) -> bool: ... def full(self) -> bool: ... @coroutine - def put(self, item: T) -> Future: ... + def put(self, item: T) -> Future[None]: ... def put_nowait(self, item: T) -> None: ... @coroutine def get(self) -> Future[T]: ...