diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2014-12-01 16:16:30 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2014-12-01 16:16:30 (GMT) |
commit | 0f8f784a77a51dc3ceac8c812177bff33bced830 (patch) | |
tree | 55227dc28b9e1fc5c85650a5604d28c52e32e70f /Python/thread.c | |
parent | d862db0d091a3bb95c185d7365384b8bd22f59be (diff) | |
download | cpython-0f8f784a77a51dc3ceac8c812177bff33bced830.zip cpython-0f8f784a77a51dc3ceac8c812177bff33bced830.tar.gz cpython-0f8f784a77a51dc3ceac8c812177bff33bced830.tar.bz2 |
Removed duplicated words in in comments and docs.
Diffstat (limited to 'Python/thread.c')
-rw-r--r-- | Python/thread.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/thread.c b/Python/thread.c index dd333e8..c54670d 100644 --- a/Python/thread.c +++ b/Python/thread.c @@ -271,7 +271,7 @@ find_key(int key, void *value) if (p->id == id && p->key == key) goto Done; /* Sanity check. These states should never happen but if - * they do we must abort. Otherwise we'll end up spinning in + * they do we must abort. Otherwise we'll end up spinning * in a tight loop with the lock held. A similar check is done * in pystate.c tstate_delete_common(). */ if (p == prev_p) |