diff options
author | Ezio Melotti <ezio.melotti@gmail.com> | 2011-03-16 12:34:31 +0200 |
---|---|---|
committer | Ezio Melotti <ezio.melotti@gmail.com> | 2011-03-16 12:34:31 +0200 |
commit | c2077b0d9b5bf99768c6f396bf7ae6c41b682465 (patch) | |
tree | 8a1dc9e646a99465f4f1c9961012d52ef183e653 /Python/pystate.c | |
parent | 6905de14fef619767693f8bd91996bc7e99ca9fe (diff) | |
download | cpython-git-c2077b0d9b5bf99768c6f396bf7ae6c41b682465.tar.gz |
#11565: Fix several typos. Patch by Piotr Kasprzyk.
Diffstat (limited to 'Python/pystate.c')
-rw-r--r-- | Python/pystate.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/pystate.c b/Python/pystate.c index c0127be8bf..ddb7d42589 100644 --- a/Python/pystate.c +++ b/Python/pystate.c @@ -463,7 +463,7 @@ _PyThread_CurrentFrames(void) /* for i in all interpreters: * for t in all of i's thread states: * if t's frame isn't NULL, map t's id to its frame - * Because these lists can mutute even when the GIL is held, we + * Because these lists can mutate even when the GIL is held, we * need to grab head_mutex for the duration. */ HEAD_LOCK(); |