Be consistent in the spelling of thread-safe(ty).

This commit is contained in:
Georg Brandl 2010-10-19 21:07:16 +00:00
parent 6dbed2e8b3
commit f285bcca28
5 changed files with 7 additions and 7 deletions

View file

@ -789,9 +789,9 @@ Currently, :class:`Lock`, :class:`RLock`, :class:`Condition`,
Importing in threaded code
--------------------------
While the import machinery is thread safe, there are two key
restrictions on threaded imports due to inherent limitations in the way
that thread safety is provided:
While the import machinery is thread-safe, there are two key restrictions on
threaded imports due to inherent limitations in the way that thread-safety is
provided:
* Firstly, other than in the main module, an import should not have the
side effect of spawning a new thread and then waiting for that thread in