commit | fdafa1d0ed0a8930b52ee81e57c931cc4d5c2388 | [log] [tgz] |
---|---|---|
author | idomic <michael.ido@gmail.com> | Sun Dec 01 15:07:39 2019 -0500 |
committer | Tal Einat <taleinat+github@gmail.com> | Sun Dec 01 22:07:39 2019 +0200 |
tree | 841bee353e4f284060cd315f2cdce6ad4fce2806 | |
parent | 575d0b46d122292ca6e0576a91265d7abf7cbc3d [diff] [blame] |
document threading.Lock.locked() (GH-17427)
diff --git a/Doc/library/threading.rst b/Doc/library/threading.rst index 9a68491..96989bd 100644 --- a/Doc/library/threading.rst +++ b/Doc/library/threading.rst
@@ -496,6 +496,10 @@ There is no return value. + .. method:: locked() + Return true if the lock is acquired. + + .. _rlock-objects: