summaryrefslogtreecommitdiffstats
path: root/Include/internal/pycore_function.h
diff options
context:
space:
mode:
authorEric Snow <ericsnowcurrently@gmail.com>2023-03-08 22:56:36 (GMT)
committerGitHub <noreply@github.com>2023-03-08 22:56:36 (GMT)
commit66ff374d4f353ae427c148d2a1d141d223303a82 (patch)
treefc06c37106b1ad716e163b7ea14c6d8c175b1d4f /Include/internal/pycore_function.h
parentcbb0aa71d040022db61390380b8aebc7c04f3275 (diff)
downloadcpython-66ff374d4f353ae427c148d2a1d141d223303a82.zip
cpython-66ff374d4f353ae427c148d2a1d141d223303a82.tar.gz
cpython-66ff374d4f353ae427c148d2a1d141d223303a82.tar.bz2
gh-100227: Move func_state.next_version to PyInterpreterState (gh-102334)
https://github.com/python/cpython/issues/100227
Diffstat (limited to 'Include/internal/pycore_function.h')
-rw-r--r--Include/internal/pycore_function.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Include/internal/pycore_function.h b/Include/internal/pycore_function.h
index 5cedb33..1198814 100644
--- a/Include/internal/pycore_function.h
+++ b/Include/internal/pycore_function.h
@@ -10,7 +10,7 @@ extern "C" {
#define FUNC_MAX_WATCHERS 8
-struct _py_func_runtime_state {
+struct _py_func_state {
uint32_t next_version;
};