From 381372d1be8e511f0e5d2940c478f53ca38f535f Mon Sep 17 00:00:00 2001 From: R David Murray Date: Mon, 4 Feb 2013 10:29:38 -0500 Subject: [PATCH] #17091: update docstring for _thread.Lock.acquire. The main docs were fixed to remove mention of None long ago, but the docstring was not. Reported by Armin Rigo, patch by Ian Cordasco. --- Modules/threadmodule.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Modules/threadmodule.c b/Modules/threadmodule.c index 9462f430a72..efc5d7f5119 100644 --- a/Modules/threadmodule.c +++ b/Modules/threadmodule.c @@ -56,12 +56,12 @@ lock_PyThread_acquire_lock(lockobject *self, PyObject *args) } PyDoc_STRVAR(acquire_doc, -"acquire([wait]) -> None or bool\n\ +"acquire([wait]) -> bool\n\ (acquire_lock() is an obsolete synonym)\n\ \n\ Lock the lock. Without argument, this blocks if the lock is already\n\ locked (even by the same thread), waiting for another thread to release\n\ -the lock, and return None once the lock is acquired.\n\ +the lock, and return True once the lock is acquired.\n\ With an argument, this will only block if the argument is true,\n\ and the return value reflects whether the lock is acquired.\n\ The blocking operation is not interruptible.");