summaryrefslogtreecommitdiffstats
path: root/Modules
diff options
context:
space:
mode:
Diffstat (limited to 'Modules')
-rw-r--r--Modules/_tracemalloc.c2
-rw-r--r--Modules/posixmodule.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/Modules/_tracemalloc.c b/Modules/_tracemalloc.c
index c47ed28..12e32eb 100644
--- a/Modules/_tracemalloc.c
+++ b/Modules/_tracemalloc.c
@@ -101,7 +101,7 @@ static size_t tracemalloc_traced_memory = 0;
Protected by TABLES_LOCK(). */
static size_t tracemalloc_peak_traced_memory = 0;
-/* Hash table used as a set to to intern filenames:
+/* Hash table used as a set to intern filenames:
PyObject* => PyObject*.
Protected by the GIL */
static _Py_hashtable_t *tracemalloc_filenames = NULL;
diff --git a/Modules/posixmodule.c b/Modules/posixmodule.c
index 0f0f1c3..eb0a68d 100644
--- a/Modules/posixmodule.c
+++ b/Modules/posixmodule.c
@@ -14944,7 +14944,7 @@ os_sysconf_impl(PyModuleDef *module, int name)
/* This code is used to ensure that the tables of configuration value names
- * are in sorted order as required by conv_confname(), and also to build the
+ * are in sorted order as required by conv_confname(), and also to build
* the exported dictionaries that are used to publish information about the
* names available on the host platform.
*