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: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=c9d504fc29e886977037b855bb27b44f07f26379;p=thirdparty%2FPython%2Fcpython.git Fix docstring typo in concurrent.futures.Future --- diff --git a/Lib/concurrent/futures/_base.py b/Lib/concurrent/futures/_base.py index 1e098be33ff1..e997c02b4314 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]