diff options
author | luzpaz <luzpaz@users.noreply.github.com> | 2017-11-05 13:37:50 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2017-11-05 13:37:50 (GMT) |
commit | a5293b4ff2c1b5446947b4986f98ecf5d52432d4 (patch) | |
tree | be2f5e686be63814c02eabc61a899631ec7a08ac /Tools/c-globals | |
parent | cf296537f164abeacd83011239881f75f290ed31 (diff) | |
download | cpython-a5293b4ff2c1b5446947b4986f98ecf5d52432d4.zip cpython-a5293b4ff2c1b5446947b4986f98ecf5d52432d4.tar.gz cpython-a5293b4ff2c1b5446947b4986f98ecf5d52432d4.tar.bz2 |
Fix miscellaneous typos (#4275)
Diffstat (limited to 'Tools/c-globals')
-rw-r--r-- | Tools/c-globals/README | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Tools/c-globals/README b/Tools/c-globals/README index d0e6e8e..0ee8ac3 100644 --- a/Tools/c-globals/README +++ b/Tools/c-globals/README @@ -21,7 +21,7 @@ which addresses the situation for extension modules in general. Globals in the last category should be avoided as well. The problem isn't with the Python runtime having state. Rather, the problem is with -that state being spread thoughout the codebase in dozens of individual +that state being spread throughout the codebase in dozens of individual globals. Unlike the other globals, the runtime state represents a set of values that are constantly shifting in a complex way. When they are spread out it's harder to get a clear picture of what the runtime |