]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
[3.10] Fix typos in the Modules directory (GH-28761) (GH-28781)
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>
Thu, 7 Oct 2021 08:55:18 +0000 (01:55 -0700)
committerGitHub <noreply@github.com>
Thu, 7 Oct 2021 08:55:18 +0000 (01:55 -0700)
(cherry picked from commit dd02a696e55b450413e765e698e653d781ca4205)

Co-authored-by: Christian Clauss <cclauss@me.com>
Automerge-Triggered-By: GH:gpshead
19 files changed:
Modules/_csv.c
Modules/_ctypes/callproc.c
Modules/_ctypes/cfield.c
Modules/_ctypes/ctypes.h
Modules/_pickle.c
Modules/_sre.c
Modules/_testcapimodule.c
Modules/_threadmodule.c
Modules/_tkinter.c
Modules/_tracemalloc.c
Modules/_zoneinfo.c
Modules/expat/xmlparse.c
Modules/gc_weakref.txt
Modules/getpath.c
Modules/sha1module.c
Modules/signalmodule.c
Modules/socketmodule.c
Modules/syslogmodule.c
Modules/zlibmodule.c

index 3109fd16bc744bf8bdb81557f521d2aa67974280..3729d2be362522f2be8cbd8f920242f9e5ba7d45 100644 (file)
@@ -489,7 +489,7 @@ err:
 }
 
 /* Since dialect is now a heap type, it inherits pickling method for
- * protocol 0 and 1 from object, therefore it needs to be overriden */
+ * protocol 0 and 1 from object, therefore it needs to be overridden */
 
 PyDoc_STRVAR(dialect_reduce_doc, "raises an exception to avoid pickling");
 
index f8f8efa4ee879301365bbbcfa25d6d891a9e6963..ddf289e3e8f600eddb8c07527ab5eb684c894e97 100644 (file)
@@ -834,7 +834,7 @@ static int _call_function_pointer(int flags,
 #      define HAVE_FFI_PREP_CIF_VAR_RUNTIME false
 #   endif
 
-    /* Even on Apple-arm64 the calling convention for variadic functions conincides
+    /* Even on Apple-arm64 the calling convention for variadic functions coincides
      * with the standard calling convention in the case that the function called
      * only with its fixed arguments.   Thus, we do not need a special flag to be
      * set on variadic functions.   We treat a function as variadic if it is called
index a21a9daaed02cc1dbcf31f12c2155093c56c5026..ec6feca8b0f809e038ebe5ed36e2de91bfcb63cd 100644 (file)
@@ -35,7 +35,7 @@ PyCField_new(PyTypeObject *type, PyObject *args, PyObject *kwds)
  * Expects the size, index and offset for the current field in *psize and
  * *poffset, stores the total size so far in *psize, the offset for the next
  * field in *poffset, the alignment requirements for the current field in
- * *palign, and returns a field desriptor for this field.
+ * *palign, and returns a field descriptor for this field.
  */
 /*
  * bitfields extension:
index 6110027980827c4ea7804bb0188dbf53b84e06fd..9600ddc7413b2e925ad649b04f06cf8420b9fec8 100644 (file)
@@ -208,7 +208,7 @@ typedef struct {
     PyObject *checker;
     int flags;                  /* calling convention and such */
 
-    /* pep3118 fields, pointers neeed PyMem_Free */
+    /* pep3118 fields, pointers need PyMem_Free */
     char *format;
     int ndim;
     Py_ssize_t *shape;
index 691d4a293e8498045bc512539f3b569a70e81c9b..919490c88f7d09560f139a775dab6688bb3ade27 100644 (file)
@@ -4527,7 +4527,7 @@ dump(PicklerObject *self, PyObject *obj)
      * call when setting the reducer_override attribute of the Pickler instance
      * to a bound method of the same instance. This is important as the Pickler
      * instance holds a reference to each object it has pickled (through its
-     * memo): thus, these objects wont be garbage-collected as long as the
+     * memo): thus, these objects won't be garbage-collected as long as the
      * Pickler itself is not collected. */
     Py_CLEAR(self->reducer_override);
     return status;
@@ -6540,7 +6540,7 @@ do_setitems(UnpicklerObject *self, Py_ssize_t x)
         return 0;
     if ((len - x) % 2 != 0) {
         PickleState *st = _Pickle_GetGlobalState();
-        /* Currupt or hostile pickle -- we never write one like this. */
+        /* Corrupt or hostile pickle -- we never write one like this. */
         PyErr_SetString(st->UnpicklingError,
                         "odd number of items for SETITEMS");
         return -1;
index 7b21240e9a0339ac9758c5ddd7c478137ae1f392..d21b533530187e733e94452e4a4af131585ceabf 100644 (file)
@@ -15,7 +15,7 @@
  * 2001-05-14 fl   fixes for 1.5.2 compatibility
  * 2001-07-01 fl   added BIGCHARSET support (from Martin von Loewis)
  * 2001-10-18 fl   fixed group reset issue (from Matthew Mueller)
- * 2001-10-20 fl   added split primitive; reenable unicode for 1.6/2.0/2.1
+ * 2001-10-20 fl   added split primitive; re-enable unicode for 1.6/2.0/2.1
  * 2001-10-21 fl   added sub/subn primitive
  * 2001-10-24 fl   added finditer primitive (for 2.2 only)
  * 2001-12-07 fl   fixed memory leak in sub/subn (Guido van Rossum)
index 103bd4062292db0b7c62a14cbb14074713f37328..5e5954925211561fe24e351adee420c849b3f675 100644 (file)
@@ -5269,7 +5269,7 @@ encode_locale_ex(PyObject *self, PyObject *args)
         PyErr_SetString(PyExc_ValueError, "unsupported error handler");
         break;
     default:
-        PyErr_SetString(PyExc_ValueError, "unknow error code");
+        PyErr_SetString(PyExc_ValueError, "unknown error code");
         break;
     }
     return res;
@@ -5312,7 +5312,7 @@ decode_locale_ex(PyObject *self, PyObject *args)
         PyErr_SetString(PyExc_ValueError, "unsupported error handler");
         break;
     default:
-        PyErr_SetString(PyExc_ValueError, "unknow error code");
+        PyErr_SetString(PyExc_ValueError, "unknown error code");
         break;
     }
     return res;
index 388e26e58d42048572e95a737da7277c08a6a012..813d7ec232c35d6f81c9bccb56e291c737386758 100644 (file)
@@ -1215,7 +1215,7 @@ where the corresponding signal handler will be executed.\n\
 If *signum* is omitted, SIGINT is assumed.\n\
 A subthread can use this function to interrupt the main thread.\n\
 \n\
-Note: the default signal hander for SIGINT raises ``KeyboardInterrupt``."
+Note: the default signal handler for SIGINT raises ``KeyboardInterrupt``."
 );
 
 static lockobject *newlockobject(PyObject *module);
index 329b291729d581b1fcef17a59c629e3ada288f5c..2a3e65b6c97df2e70376bb25ce96ad9918c79ad8 100644 (file)
@@ -936,7 +936,7 @@ PyTclObject_str(PyTclObject *self)
         Py_INCREF(self->string);
         return self->string;
     }
-    /* XXX Could chache result if it is non-ASCII. */
+    /* XXX Could cache result if it is non-ASCII. */
     return unicodeFromTclObj(self->value);
 }
 
index 04f6c243b5ca4d1fdb539ffadb4ba8244846f875..90498fb7a7897d65e411f4ab26c102ffa8753fb2 100644 (file)
@@ -836,7 +836,7 @@ tracemalloc_clear_filename(void *value)
 static void
 tracemalloc_clear_traces(void)
 {
-    /* The GIL protects variables againt concurrent access */
+    /* The GIL protects variables against concurrent access */
     assert(PyGILState_Check());
 
     TABLES_LOCK();
index c722330ee491a9d85bb9292f5a3b301aa93e1553..04fa09422b2134c0ab425f2a4491062ccfe7b478 100644 (file)
@@ -1342,7 +1342,7 @@ tzrule_transitions(_tzrule *rule, int year, int64_t *start, int64_t *end)
  * could technically be calculated from the timestamp, but given that the
  * callers of this function already have the year information accessible from
  * the datetime struct, it is taken as an additional parameter to reduce
- * unncessary calculation.
+ * unnecessary calculation.
  * */
 static _ttinfo *
 find_tzrule_ttinfo(_tzrule *rule, int64_t ts, unsigned char fold, int year)
index 5ba56eaea6357a22c36152be8ac0b25641208955..034a03c30851a18931555fdbd4b518bcda082b35 100644 (file)
@@ -3976,7 +3976,7 @@ initializeEncoding(XML_Parser parser) {
   const char *s;
 #ifdef XML_UNICODE
   char encodingBuf[128];
-  /* See comments abount `protoclEncodingName` in parserInit() */
+  /* See comments about `protoclEncodingName` in parserInit() */
   if (! parser->m_protocolEncodingName)
     s = NULL;
   else {
index b5b9f7b2e3d4dc676c91444be81f0886cf06720d..6d07cce12364317c524262e6eb431fbbb107192c 100644 (file)
@@ -50,7 +50,7 @@ CT while gc is running.
     https://www.python.org/sf/1055820
 
 shows how innocent it can be, and also how nasty.  Variants of the three
-focussed test cases attached to that bug report are now part of Python's
+focused test cases attached to that bug report are now part of Python's
 standard Lib/test/test_gc.py.
 
 Jim Fulton gave the best nutshell summary of the new (in 2.4 and 2.3.5)
index 363d62a0657ebd0d0684694231bdb32ac4d474de..ef6dd59a084d8de4dddfc193e0166b5d2f52a2f8 100644 (file)
@@ -1505,7 +1505,7 @@ calculate_path(PyCalculatePath *calculate, _PyPathConfig *pathconfig)
     }
 
     /* If a pyvenv.cfg configure file is found,
-       argv0_path is overriden with its 'home' variable. */
+       argv0_path is overridden with its 'home' variable. */
     status = calculate_read_pyenv(calculate);
     if (_PyStatus_EXCEPTION(status)) {
         return status;
index 6980051dc08f8ad437822ec483bcee7539cdf95b..d186aa460a07b1986a088650c26f5edcb53cef13 100644 (file)
@@ -269,7 +269,7 @@ sha1_done(struct sha1_state *sha1, unsigned char *out)
         sha1->curlen = 0;
     }
 
-    /* pad upto 56 bytes of zeroes */
+    /* pad up to 56 bytes of zeroes */
     while (sha1->curlen < 56) {
         sha1->buf[sha1->curlen++] = (unsigned char)0;
     }
index a4eeec9807c919525c0a1b20a31dfcf39f92ef6b..5c4ed183facae4c35b1f7ecebf0a657a9da07577 100644 (file)
@@ -1594,7 +1594,7 @@ signal_get_set_handlers(signal_state_t *state, PyObject *mod_dict)
         Py_XDECREF(old_func);
     }
 
-    // Instal Python SIGINT handler which raises KeyboardInterrupt
+    // Install Python SIGINT handler which raises KeyboardInterrupt
     PyObject* sigint_func = get_handler(SIGINT);
     if (sigint_func == state->default_handler) {
         PyObject *int_handler = PyMapping_GetItemString(mod_dict,
index 83f05b72ecbd9ed3d60171b8db7001a994947f08..ab8618b341544756dba217255556941f66b43366 100644 (file)
@@ -927,7 +927,7 @@ sock_call_ex(PySocketSockObject *s,
                reading, but the data then discarded by the OS because of a
                wrong checksum.
 
-               Loop on select() to recheck for socket readyness. */
+               Loop on select() to recheck for socket readiness. */
             continue;
         }
 
index cdc94a60a373d78c6b1aa2515437001ac1735423..0f2fea15b3a6f0cd3251bd5c85cd3e3dc6b571f5 100644 (file)
@@ -183,7 +183,7 @@ syslog_syslog(PyObject * self, PyObject * args)
         PyObject *openargs;
 
         /* Continue even if PyTuple_New fails, because openlog(3) is optional.
-         * So, we can still do loggin in the unlikely event things are so hosed
+         * So, we can still do logging in the unlikely event things are so hosed
          * that we can't do this tuple.
          */
         if ((openargs = PyTuple_New(0))) {
index bc4ff608e81b381741025fdd67268f072f32fb75..68de701efa45f1eee9e644e0e3c34d666363f39b 100644 (file)
@@ -82,7 +82,7 @@ typedef struct {
     Bytef *next_posi;
 } _Uint32Window;
 
-/* Initialize the buffer with an inital buffer size.
+/* Initialize the buffer with an initial buffer size.
 
    On success, return value >= 0
    On failure, return value < 0 */