From: Eli Bendersky Date: Thu, 17 Jan 2013 14:36:30 +0000 (-0800) Subject: Fix docstring typo in concurrent.futures.Future X-Git-Tag: v3.3.1rc1~331 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=c9d504fc29e886977037b855bb27b44f07f26379;p=python Fix docstring typo in concurrent.futures.Future --- diff --git a/Lib/concurrent/futures/_base.py b/Lib/concurrent/futures/_base.py index 1e098be33f..e997c02b43 100644 --- a/Lib/concurrent/futures/_base.py +++ b/Lib/concurrent/futures/_base.py @@ -332,7 +332,7 @@ class Future(object): return True def cancelled(self): - """Return True if the future has cancelled.""" + """Return True if the future was cancelled.""" with self._condition: return self._state in [CANCELLED, CANCELLED_AND_NOTIFIED]