[Python-checkins] Update code comment re: location of struct _is. (GH-20067)

Chris Jerdonek webhook-mailer at python.org
Thu May 14 22:11:09 EDT 2020


https://github.com/python/cpython/commit/1aa8767baf498a920f0461d1088772a12dcb4d20
commit: 1aa8767baf498a920f0461d1088772a12dcb4d20
branch: master
author: Chris Jerdonek <chris.jerdonek at gmail.com>
committer: GitHub <noreply at github.com>
date: 2020-05-14T19:11:00-07:00
summary:

Update code comment re: location of struct _is. (GH-20067)

files:
M Include/pystate.h

diff --git a/Include/pystate.h b/Include/pystate.h
index 34cad02c3a930..bae440778b261 100644
--- a/Include/pystate.h
+++ b/Include/pystate.h
@@ -18,7 +18,7 @@ struct _is;
 
 /* struct _ts is defined in cpython/pystate.h */
 typedef struct _ts PyThreadState;
-/* struct _is is defined in internal/pycore_pystate.h */
+/* struct _is is defined in internal/pycore_interp.h */
 typedef struct _is PyInterpreterState;
 
 PyAPI_FUNC(PyInterpreterState *) PyInterpreterState_New(void);



More information about the Python-checkins mailing list