summaryrefslogtreecommitdiff
path: root/Python
diff options
context:
space:
mode:
authorSkip Montanaro <skip@pobox.com>2004-03-03 08:42:23 +0000
committerSkip Montanaro <skip@pobox.com>2004-03-03 08:42:23 +0000
commit92945fcded45ca484bf5e34146c13dd89e372df9 (patch)
tree9f2159a2f39a80ae7d2f1e3873daa4f318393182 /Python
parent9046077069b7f275c7712dff9cdf39a9d0f4da9c (diff)
downloadcpython-92945fcded45ca484bf5e34146c13dd89e372df9.tar.gz
typo
Diffstat (limited to 'Python')
-rw-r--r--Python/thread_pthread.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/thread_pthread.h b/Python/thread_pthread.h
index db8eab1248..8645c0fb44 100644
--- a/Python/thread_pthread.h
+++ b/Python/thread_pthread.h
@@ -174,7 +174,7 @@ PyThread_start_new_thread(void (*func)(void *), void *arg)
/* XXX This implementation is considered (to quote Tim Peters) "inherently
hosed" because:
- - It does not guanrantee the promise that a non-zero integer is returned.
+ - It does not guarantee the promise that a non-zero integer is returned.
- The cast to long is inherently unsafe.
- It is not clear that the 'volatile' (for AIX?) and ugly casting in the
latter return statement (for Alpha OSF/1) are any longer necessary.