diff options
author | Christian Clauss <cclauss@me.com> | 2021-10-06 18:32:38 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-06 18:32:38 (GMT) |
commit | 8e8f7522171ef82f2f5049940f815e00e38c6f42 (patch) | |
tree | cc4238b71699a4c9cb19578be4b4b21b4bd10626 /Include/internal | |
parent | b24b47e64355224c1bf4e46ed7c4d9f7df4e6f09 (diff) | |
download | cpython-8e8f7522171ef82f2f5049940f815e00e38c6f42.zip cpython-8e8f7522171ef82f2f5049940f815e00e38c6f42.tar.gz cpython-8e8f7522171ef82f2f5049940f815e00e38c6f42.tar.bz2 |
Fix typos in the Include directory (GH-28745)
Diffstat (limited to 'Include/internal')
-rw-r--r-- | Include/internal/pycore_frame.h | 2 | ||||
-rw-r--r-- | Include/internal/pycore_traceback.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/Include/internal/pycore_frame.h b/Include/internal/pycore_frame.h index 6afb95c..489e115 100644 --- a/Include/internal/pycore_frame.h +++ b/Include/internal/pycore_frame.h @@ -128,7 +128,7 @@ _PyFrame_GetFrameObject(InterpreterFrame *frame) /* Clears all references in the frame. * If take is non-zero, then the InterpreterFrame frame - * may be transfered to the frame object it references + * may be transferred to the frame object it references * instead of being cleared. Either way * the caller no longer owns the references * in the frame. diff --git a/Include/internal/pycore_traceback.h b/Include/internal/pycore_traceback.h index 4d28230..c01a476 100644 --- a/Include/internal/pycore_traceback.h +++ b/Include/internal/pycore_traceback.h @@ -51,7 +51,7 @@ PyAPI_FUNC(void) _Py_DumpTraceback( _PyGILState_GetInterpreterStateUnsafe() in last resort. It is better to pass NULL to interp and current_tstate, the function tries - different options to retrieve these informations. + different options to retrieve this information. This function is signal safe. */ |