Merge branch 'blender-v4.5-release'

This commit is contained in:
Campbell Barton
2025-06-30 14:31:56 +10:00

View File

@@ -3886,14 +3886,14 @@ PyDoc_STRVAR(
" Python must keep a reference to the strings returned by the callback or Blender\n"
" will misbehave or even crash."
"\n"
" :type items: Sequence["
" :type items: Iterable["
"tuple[str, str, str] | "
"tuple[str, str, str, int] | "
"tuple[str, str, str, int, int] | "
"None] | "
"Callable[[:class:`bpy.types.bpy_struct`, :class:`bpy.types.Context` | None], "
/* NOTE(@ideasman42): a type alias would be useful here (same as above). */
"Sequence["
"Iterable["
"tuple[str, str, str] | "
"tuple[str, str, str, int] | "
"tuple[str, str, str, int, int] | "