summaryrefslogtreecommitdiffstats
path: root/Modules/_tracemalloc.c
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2014-12-01 16:30:14 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2014-12-01 16:30:14 (GMT)
commit83000a490a36f4c3c579151ff09eeb4875d0d4cd (patch)
tree4685eb31eff461a6c77ab302bcfa689aff7e3f7b /Modules/_tracemalloc.c
parent2205da43a6bb68b641d97fa7832b71c8a57efb77 (diff)
parent56a6d855e2b93b0eb39a3b291ef43b2d03c5e986 (diff)
downloadcpython-83000a490a36f4c3c579151ff09eeb4875d0d4cd.zip
cpython-83000a490a36f4c3c579151ff09eeb4875d0d4cd.tar.gz
cpython-83000a490a36f4c3c579151ff09eeb4875d0d4cd.tar.bz2
Removed duplicated words in in comments and docs.
Diffstat (limited to 'Modules/_tracemalloc.c')
-rw-r--r--Modules/_tracemalloc.c2
1 files changed, 1 insertions, 1 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;