From 1aa8767baf498a920f0461d1088772a12dcb4d20 Mon Sep 17 00:00:00 2001 From: Chris Jerdonek Date: Thu, 14 May 2020 19:11:00 -0700 Subject: [PATCH] Update code comment re: location of struct _is. (GH-20067) --- Include/pystate.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Include/pystate.h b/Include/pystate.h index 34cad02c3a9..bae440778b2 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);