diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2014-12-01 16:28:43 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2014-12-01 16:28:43 (GMT) |
commit | 56a6d855e2b93b0eb39a3b291ef43b2d03c5e986 (patch) | |
tree | aa94b63e1cd81a03b4d96f6b9d29693f02dcc631 /Modules | |
parent | b491e0521fd6e1a2e6f3e6354a2a296c7c8a2915 (diff) | |
download | cpython-56a6d855e2b93b0eb39a3b291ef43b2d03c5e986.zip cpython-56a6d855e2b93b0eb39a3b291ef43b2d03c5e986.tar.gz cpython-56a6d855e2b93b0eb39a3b291ef43b2d03c5e986.tar.bz2 |
Removed duplicated words in in comments and docs.
Diffstat (limited to 'Modules')
-rw-r--r-- | Modules/_tracemalloc.c | 2 | ||||
-rw-r--r-- | Modules/posixmodule.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/Modules/_tracemalloc.c b/Modules/_tracemalloc.c index 780e8ed..bbe7259 100644 --- a/Modules/_tracemalloc.c +++ b/Modules/_tracemalloc.c @@ -104,7 +104,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 e1e5af9..e2d9b5c 100644 --- a/Modules/posixmodule.c +++ b/Modules/posixmodule.c @@ -10289,7 +10289,7 @@ posix_sysconf(PyObject *self, PyObject *args) /* 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. * |