[Python-checkins] Fix typos in sysmodule (GH-23883)

nanjekyejoannah webhook-mailer at python.org
Tue Dec 22 17:32:07 EST 2020


https://github.com/python/cpython/commit/46b5c6be29f6470a20dd0dbd34e794debcee7c04
commit: 46b5c6be29f6470a20dd0dbd34e794debcee7c04
branch: master
author: Joannah Nanjekye <33177550+nanjekyejoannah at users.noreply.github.com>
committer: nanjekyejoannah <33177550+nanjekyejoannah at users.noreply.github.com>
date: 2020-12-22T18:31:46-04:00
summary:

Fix typos in sysmodule (GH-23883)

files:
M Python/sysmodule.c

diff --git a/Python/sysmodule.c b/Python/sysmodule.c
index b80d37df42c80..720532eade29b 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
 



More information about the Python-checkins mailing list