diff options
author | Itamar Ostricher <itamarost@gmail.com> | 2022-07-09 13:58:30 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-07-09 13:58:30 (GMT) |
commit | 0fc8ac0b0db6c03182c5181475c7b0b2ff7ec11f (patch) | |
tree | d682fea456957d4c49882ad08894d3ff0a846311 /Include/internal/pycore_interp.h | |
parent | 18ef240a2c362eea64b67bab8f9d45c743eb3619 (diff) | |
download | cpython-0fc8ac0b0db6c03182c5181475c7b0b2ff7ec11f.zip cpython-0fc8ac0b0db6c03182c5181475c7b0b2ff7ec11f.tar.gz cpython-0fc8ac0b0db6c03182c5181475c7b0b2ff7ec11f.tar.bz2 |
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
Diffstat (limited to 'Include/internal/pycore_interp.h')
-rw-r--r-- | Include/internal/pycore_interp.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Include/internal/pycore_interp.h b/Include/internal/pycore_interp.h index bcfcd88..6ce2945 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 { |