diff -r 640a80adb9df Modules/_threadmodule.c --- a/Modules/_threadmodule.c Sun Feb 03 19:26:51 2013 -0500 +++ b/Modules/_threadmodule.c Sun Feb 03 21:53:21 2013 -0500 @@ -145,12 +145,12 @@ } 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 interruptible.");