File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -42,7 +42,7 @@ The GIL
4242
4343`The GIL `_ (Global Interpreter Lock) is how Python allows multiple threads to
4444operate at the same time. Python's memory management isn't entirely thread-safe,
45- so the GIL is required to prevents multiple threads from running the same
45+ so the GIL is required to prevent multiple threads from running the same
4646Python code at once.
4747
4848David Beazley has a great `guide `_ on how the GIL operates. He also covers the
@@ -58,8 +58,8 @@ C Extensions
5858The GIL
5959-------
6060
61- `Special care `_ must be taken when writing C extensions to make sure you r
62- egister your threads with the interpreter.
61+ `Special care `_ must be taken when writing C extensions to make sure you
62+ register your threads with the interpreter.
6363
6464C Extensions
6565::::::::::::
@@ -86,7 +86,7 @@ Threading
8686---------
8787
8888
89- Spanwing Processes
89+ Spawning Processes
9090------------------
9191
9292
You can’t perform that action at this time.
0 commit comments