commit | d300c0e845cdb898b0950642ed75dd0ae883ad12 | [log] [tgz] |
---|---|---|
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | Sun Dec 01 12:14:26 2019 -0800 |
committer | GitHub <noreply@github.com> | Sun Dec 01 12:14:26 2019 -0800 |
tree | 0a2fcfeaf236edebbd470fe4891ea4ee2512b5b6 | |
parent | 5f234538ab5625a81476981ab8772b46b67bf66e [diff] [blame] |
document threading.Lock.locked() (GH-17427) (cherry picked from commit fdafa1d0ed0a8930b52ee81e57c931cc4d5c2388) Co-authored-by: idomic <michael.ido@gmail.com>
diff --git a/Doc/library/threading.rst b/Doc/library/threading.rst index fd815ef..93ea4bd 100644 --- a/Doc/library/threading.rst +++ b/Doc/library/threading.rst
@@ -488,6 +488,10 @@ There is no return value. + .. method:: locked() + Return true if the lock is acquired. + + .. _rlock-objects: