]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Fix typos in the Include directory (GH-28745)
authorChristian Clauss <cclauss@me.com>
Wed, 6 Oct 2021 18:32:38 +0000 (20:32 +0200)
committerGitHub <noreply@github.com>
Wed, 6 Oct 2021 18:32:38 +0000 (11:32 -0700)
Include/abstract.h
Include/cpython/dictobject.h
Include/cpython/pystate.h
Include/cpython/pytime.h
Include/internal/pycore_frame.h
Include/internal/pycore_traceback.h
Include/object.h

index e8d3f9293b98d32cbeb073dd934734cb449a9b80..9eaab6b2e054c4406f3bb4af8f423a94a4907965 100644 (file)
@@ -318,7 +318,7 @@ PyAPI_FUNC(int) PyObject_DelItem(PyObject *o, PyObject *key);
 
 /* Takes an arbitrary object which must support the (character, single segment)
    buffer interface and returns a pointer to a read-only memory location
-   useable as character based input for subsequent processing.
+   usable as character based input for subsequent processing.
 
    Return 0 on success.  buffer and buffer_len are only set in case no error
    occurs. Otherwise, -1 is returned and an exception set. */
index ba118788f7b1bc0a7009862fc26afe240c5fb61d..e97969be4de0cc7006a4b3bd655387a8f58eb99e 100644 (file)
@@ -23,7 +23,7 @@ typedef struct {
     /* If ma_values is NULL, the table is "combined": keys and values
        are stored in ma_keys.
 
-       If ma_values is not NULL, the table is splitted:
+       If ma_values is not NULL, the table is split:
        keys are stored in ma_keys and values are stored in ma_values */
     PyDictValues *ma_values;
 } PyDictObject;
index ab4bf8bf8483c7dd3190a0f536f6f63bedad0699..ca0de87ab0e5c4d0a6ff424d9e8dc0865a5f772c 100644 (file)
@@ -263,7 +263,7 @@ PyAPI_FUNC(int) _PyInterpreterState_GetConfigCopy(
 PyAPI_FUNC(int) _PyInterpreterState_SetConfig(
     const struct PyConfig *config);
 
-// Get the configuration of the currrent interpreter.
+// Get the configuration of the current interpreter.
 // The caller must hold the GIL.
 PyAPI_FUNC(const PyConfig*) _Py_GetConfig(void);
 
index f32148aa8448d88881c9a15968fba3ccb2e72681..23d4f16a8fd8472018590277ca920742afa9393c 100644 (file)
@@ -134,13 +134,13 @@ PyAPI_FUNC(_PyTime_t) _PyTime_FromNanoseconds(_PyTime_t ns);
 PyAPI_FUNC(int) _PyTime_FromNanosecondsObject(_PyTime_t *t,
     PyObject *obj);
 
-/* Convert a number of seconds (Python float or int) to a timetamp.
+/* Convert a number of seconds (Python float or int) to a timestamp.
    Raise an exception and return -1 on error, return 0 on success. */
 PyAPI_FUNC(int) _PyTime_FromSecondsObject(_PyTime_t *t,
     PyObject *obj,
     _PyTime_round_t round);
 
-/* Convert a number of milliseconds (Python float or int, 10^-3) to a timetamp.
+/* Convert a number of milliseconds (Python float or int, 10^-3) to a timestamp.
    Raise an exception and return -1 on error, return 0 on success. */
 PyAPI_FUNC(int) _PyTime_FromMillisecondsObject(_PyTime_t *t,
     PyObject *obj,
index 6afb95c3ad62e022f91b626b2b4c37c7f7f85b37..489e115a8645c7d7507c0d7e1324947940781851 100644 (file)
@@ -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.
index 4d282308769dc872d2f595ddda72ba0567b55e86..c01a47639d5e30b3e34547e092646e3a2cbf594f 100644 (file)
@@ -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. */
 
index 490cbffd5f1074f2f0587e6e6e95ca3a1f973e7f..c3062cb01c8e08b0fb6be7e3171310bf0cd93e11 100644 (file)
@@ -600,7 +600,7 @@ static inline PyObject* _Py_XNewRef(PyObject *obj)
 }
 
 // Py_NewRef() and Py_XNewRef() are exported as functions for the stable ABI.
-// Names overriden with macros by static inline functions for best
+// Names overridden with macros by static inline functions for best
 // performances.
 #define Py_NewRef(obj) _Py_NewRef(_PyObject_CAST(obj))
 #define Py_XNewRef(obj) _Py_XNewRef(_PyObject_CAST(obj))