Fixed typo reported by Vladimir Marangozov <Vladimir.Marangozov@imag.fr>.

This commit is contained in:
Fred Drake 1998-02-20 00:45:52 +00:00
parent f7f2e70fd4
commit 7baf3d4ea7
2 changed files with 2 additions and 2 deletions

View File

@ -2510,7 +2510,7 @@ The Python interpreter is not fully thread safe. In order to support
multi-threaded Python programs, there's a global lock that must be multi-threaded Python programs, there's a global lock that must be
held by the current thread before it can safely access Python objects. held by the current thread before it can safely access Python objects.
Without the lock, even the simplest operations could cause problems in Without the lock, even the simplest operations could cause problems in
a multi-threaded proram: for example, when two threads simultaneously a multi-threaded program: for example, when two threads simultaneously
increment the reference count of the same object, the reference count increment the reference count of the same object, the reference count
could end up being incremented only once instead of twice. could end up being incremented only once instead of twice.

View File

@ -2510,7 +2510,7 @@ The Python interpreter is not fully thread safe. In order to support
multi-threaded Python programs, there's a global lock that must be multi-threaded Python programs, there's a global lock that must be
held by the current thread before it can safely access Python objects. held by the current thread before it can safely access Python objects.
Without the lock, even the simplest operations could cause problems in Without the lock, even the simplest operations could cause problems in
a multi-threaded proram: for example, when two threads simultaneously a multi-threaded program: for example, when two threads simultaneously
increment the reference count of the same object, the reference count increment the reference count of the same object, the reference count
could end up being incremented only once instead of twice. could end up being incremented only once instead of twice.