summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@gmail.com>2014-01-03 19:48:19 +0100
committerVictor Stinner <victor.stinner@gmail.com>2014-01-03 19:48:19 +0100
commit8e724872160fad72be008fd504c10fed6f0b8aaf (patch)
treed5a811236882e1b69bd4628055e4f8178db89c83
parenta1b10aa0a12edd61a0ce14ec9989b7a6a8a2211e (diff)
downloadtrollius-8e724872160fad72be008fd504c10fed6f0b8aaf.tar.gz
Complete the TODO list
Try to fix test_queues (but it's not enough)
-rw-r--r--TODO3
-rw-r--r--tests/test_queues.py1
2 files changed, 3 insertions, 1 deletions
diff --git a/TODO b/TODO
index 8a9be0d..8f94bc3 100644
--- a/TODO
+++ b/TODO
@@ -1,5 +1,6 @@
* Use backport of concurrent.futures
-* unix_events, RuntimeError on signal.signal
+* unix_events, RuntimeError on signal.signal:
+ test_unix_events.SelectorEventLoopTests.test_add_signal_handler_install_error
* Fix all FIXME in the code
* Remove backport of Python 3.3 exceptions (ex: BlockingIOError), wrap_error()
* Remove backport of SSLContext
diff --git a/tests/test_queues.py b/tests/test_queues.py
index 833041d..afa0c43 100644
--- a/tests/test_queues.py
+++ b/tests/test_queues.py
@@ -304,6 +304,7 @@ class QueuePutTests(_QueueTestBase):
def test_blocking_put_wait(self):
+ @tasks.coroutine
def gen():
when = yield
self.assertAlmostEqual(0.01, when)