From 8ce1ff52fb168b96f3819d0c470a553d186a342f Mon Sep 17 00:00:00 2001 From: Chris Jerdonek Date: Wed, 13 May 2020 01:44:12 -0700 Subject: [PATCH] Update code comment re: location of struct _is. --- Include/pystate.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Include/pystate.h b/Include/pystate.h index 34cad02c3a930d..bae440778b261a 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);