summaryrefslogtreecommitdiffstats
path: root/Python/sysmodule.c
diff options
context:
space:
mode:
authorJoannah Nanjekye <33177550+nanjekyejoannah@users.noreply.github.com>2020-12-22 22:31:46 (GMT)
committerGitHub <noreply@github.com>2020-12-22 22:31:46 (GMT)
commit46b5c6be29f6470a20dd0dbd34e794debcee7c04 (patch)
treeb227b65f302e4b13ecd38572573e2f9cb0b95255 /Python/sysmodule.c
parent069560b1171eb6385121ff3b6331e8814a4e7454 (diff)
downloadcpython-46b5c6be29f6470a20dd0dbd34e794debcee7c04.zip
cpython-46b5c6be29f6470a20dd0dbd34e794debcee7c04.tar.gz
cpython-46b5c6be29f6470a20dd0dbd34e794debcee7c04.tar.bz2
Fix typos in sysmodule (GH-23883)
Diffstat (limited to 'Python/sysmodule.c')
-rw-r--r--Python/sysmodule.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/Python/sysmodule.c b/Python/sysmodule.c
index b80d37d..720532e 100644
--- a/Python/sysmodule.c
+++ b/Python/sysmodule.c
@@ -1907,12 +1907,12 @@ sys__debugmallocstats_impl(PyObject *module)
}
#ifdef Py_TRACE_REFS
-/* Defined in objects.c because it uses static globals if that file */
+/* Defined in objects.c because it uses static globals in that file */
extern PyObject *_Py_GetObjects(PyObject *, PyObject *);
#endif
#ifdef DYNAMIC_EXECUTION_PROFILE
-/* Defined in ceval.c because it uses static globals if that file */
+/* Defined in ceval.c because it uses static globals in that file */
extern PyObject *_Py_GetDXProfile(PyObject *, PyObject *);
#endif