]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
gh-148829: bump number of static types (#149121)
authorJelle Zijlstra <jelle.zijlstra@gmail.com>
Wed, 29 Apr 2026 01:59:48 +0000 (18:59 -0700)
committerGitHub <noreply@github.com>
Wed, 29 Apr 2026 01:59:48 +0000 (18:59 -0700)
Include/internal/pycore_interp_structs.h

index 01adadd148518909cbee785dd23ec177e03d3fed..fb810c82a5aa630aa10158e135cb2cc62ea659a1 100644 (file)
@@ -531,7 +531,7 @@ struct _py_func_state {
 
 /* For now we hard-code this to a value for which we are confident
    all the static builtin types will fit (for all builds). */
-#define _Py_MAX_MANAGED_STATIC_BUILTIN_TYPES 202
+#define _Py_MAX_MANAGED_STATIC_BUILTIN_TYPES 203
 #define _Py_MAX_MANAGED_STATIC_EXT_TYPES 10
 #define _Py_MAX_MANAGED_STATIC_TYPES \
     (_Py_MAX_MANAGED_STATIC_BUILTIN_TYPES + _Py_MAX_MANAGED_STATIC_EXT_TYPES)