File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -390,7 +390,7 @@ Initializing and finalizing the interpreter
390390 time (without calling :c:func: `Py_Initialize ` again first). Normally the
391391 return value is ``0``. If there were errors during finalization
392392 (flushing buffered data), ``-1`` is returned.
393-
393+
394394 Note that Python will do a best effort at freeing all memory allocated by the Python
395395 interpreter. Therefore, any C-Extension should make sure to correctly clean up all
396396 of the preveiously allocated PyObjects before using them in subsequent calls to
@@ -410,7 +410,7 @@ Initializing and finalizing the interpreter
410410 loaded extension modules loaded by Python are not unloaded. Small amounts of
411411 memory allocated by the Python interpreter may not be freed (if you find a leak,
412412 please report it). Memory tied up in circular references between objects is not
413- freed. Interned strings will all be deallocated regarldess of their reference count.
413+ freed. Interned strings will all be deallocated regarldess of their reference count.
414414 Some memory allocated by extension modules may not be freed. Some extensions may not
415415 work properly if their initialization routine is called more than once; this can
416416 happen if an application calls :c:func: `Py_Initialize ` and :c:func: `Py_FinalizeEx `
You can’t perform that action at this time.
0 commit comments