diff options
author | Guido van Rossum <guido@python.org> | 1998-06-27 19:45:17 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1998-06-27 19:45:17 (GMT) |
commit | d2264bb5c3280446ac713a08a3170f12e49ee350 (patch) | |
tree | e824a60d918cd6e3bf72b3359d4dd2ee00351452 /Modules/threadmodule.c | |
parent | c3bc31e249b3eb8bc17cf60532e333f9673130e9 (diff) | |
download | cpython-d2264bb5c3280446ac713a08a3170f12e49ee350.zip cpython-d2264bb5c3280446ac713a08a3170f12e49ee350.tar.gz cpython-d2264bb5c3280446ac713a08a3170f12e49ee350.tar.bz2 |
# Remove an extra blank line from a doc string.
Diffstat (limited to 'Modules/threadmodule.c')
-rw-r--r-- | Modules/threadmodule.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Modules/threadmodule.c b/Modules/threadmodule.c index e65b037..2d8c863 100644 --- a/Modules/threadmodule.c +++ b/Modules/threadmodule.c @@ -421,7 +421,6 @@ static char lock_doc[] = "A lock object is a synchronization primitive. To create a lock,\n\ call the allocate_lock() function. Methods are:\n\ \n\ -\n\ acquire() -- lock the lock, possibly blocking until it can be obtained\n\ release() -- unlock of the lock\n\ locked() -- test whether the lock is currently locked\n\ |