From 82ab31ca4f722d80a9192469658ebfcebcf51d12 Mon Sep 17 00:00:00 2001 From: "A. Jesse Jiryu Davis" Date: Thu, 19 Feb 2015 22:03:19 -0500 Subject: [PATCH] Simpler markup in Event.wait docstring. --- tornado/locks.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/tornado/locks.py b/tornado/locks.py index 73cc9e2b8..65390cdc7 100644 --- a/tornado/locks.py +++ b/tornado/locks.py @@ -116,8 +116,7 @@ class Event(object): def wait(self, timeout=None): """Block until the internal flag is true. - Returns a Future, which raises :exc:`~tornado.gen.TimeoutError` after a - timeout. + Returns a Future, which raises `.TimeoutError` after a timeout. """ if timeout is None: return self._future -- 2.47.2