[Python-checkins] pycore_interp.h: Fix comment about pytypedefs.h (#93188)

vstinner webhook-mailer at python.org
Sat Jul 9 09:58:38 EDT 2022


https://github.com/python/cpython/commit/0fc8ac0b0db6c03182c5181475c7b0b2ff7ec11f
commit: 0fc8ac0b0db6c03182c5181475c7b0b2ff7ec11f
branch: main
author: Itamar Ostricher <itamarost at gmail.com>
committer: vstinner <vstinner at python.org>
date: 2022-07-09T15:58:30+02:00
summary:

pycore_interp.h: Fix comment about pytypedefs.h (#93188)

GH-31527 moved this typedef to `Include/pytypedefs.h`, so this comment
should point at the correct location

files:
M Include/internal/pycore_interp.h

diff --git a/Include/internal/pycore_interp.h b/Include/internal/pycore_interp.h
index bcfcd88d84492..6ce2945cd9fb7 100644
--- a/Include/internal/pycore_interp.h
+++ b/Include/internal/pycore_interp.h
@@ -73,7 +73,7 @@ struct atexit_state {
 /* PyInterpreterState holds the global state for one of the runtime's
    interpreters.  Typically the initial (main) interpreter is the only one.
 
-   The PyInterpreterState typedef is in Include/pystate.h.
+   The PyInterpreterState typedef is in Include/pytypedefs.h.
    */
 struct _is {
 



More information about the Python-checkins mailing list