From: Chris Jerdonek Date: Fri, 15 May 2020 02:11:00 +0000 (-0700) Subject: Update code comment re: location of struct _is. (GH-20067) X-Git-Tag: v3.9.0b1~71 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=1aa8767baf498a920f0461d1088772a12dcb4d20;p=thirdparty%2FPython%2Fcpython.git Update code comment re: location of struct _is. (GH-20067) --- diff --git a/Include/pystate.h b/Include/pystate.h index 34cad02c3a93..bae440778b26 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);