[Python-checkins] no-issue: Fix typo in pycore_object.h (gh-99994)

corona10 webhook-mailer at python.org
Mon Dec 5 00:42:44 EST 2022


https://github.com/python/cpython/commit/bdc93b8a3563b4a3adb25fa902c0c879ccf427f6
commit: bdc93b8a3563b4a3adb25fa902c0c879ccf427f6
branch: main
author: Ikko Ashimine <eltociear at gmail.com>
committer: corona10 <donghee.na92 at gmail.com>
date: 2022-12-05T14:42:38+09:00
summary:

no-issue: Fix typo in pycore_object.h (gh-99994)

files:
M Include/internal/pycore_object.h

diff --git a/Include/internal/pycore_object.h b/Include/internal/pycore_object.h
index 33c8c0b75ea7..8796dfe2f6b8 100644
--- a/Include/internal/pycore_object.h
+++ b/Include/internal/pycore_object.h
@@ -373,7 +373,7 @@ PyAPI_FUNC(PyObject *) _PyObject_LookupSpecial(PyObject *, PyObject *);
  * match.
  *
  * Third party code unintentionally rely on problematic fpcasts. The call
- * trampoline mitigates common occurences of bad fpcasts on Emscripten.
+ * trampoline mitigates common occurrences of bad fpcasts on Emscripten.
  */
 #if defined(__EMSCRIPTEN__) && defined(PY_CALL_TRAMPOLINE)
 #define _PyCFunction_TrampolineCall(meth, self, args) \



More information about the Python-checkins mailing list