summaryrefslogtreecommitdiffstats
path: root/Include/pystate.h
diff options
context:
space:
mode:
authorChris Jerdonek <chris.jerdonek@gmail.com>2020-05-15 02:11:00 (GMT)
committerGitHub <noreply@github.com>2020-05-15 02:11:00 (GMT)
commit1aa8767baf498a920f0461d1088772a12dcb4d20 (patch)
treebc54f29648b482ef950742a42d244d3d39f16a06 /Include/pystate.h
parent6a78589b6b22878491a4b042bb8b3161e1d120f6 (diff)
downloadcpython-1aa8767baf498a920f0461d1088772a12dcb4d20.zip
cpython-1aa8767baf498a920f0461d1088772a12dcb4d20.tar.gz
cpython-1aa8767baf498a920f0461d1088772a12dcb4d20.tar.bz2
Update code comment re: location of struct _is. (GH-20067)
Diffstat (limited to 'Include/pystate.h')
-rw-r--r--Include/pystate.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Include/pystate.h b/Include/pystate.h
index 34cad02..bae4407 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);