fake-bpy-module 20240708__py3-none-any.whl → 20240711__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of fake-bpy-module might be problematic. Click here for more details.

Files changed (119) hide show
  1. _bpy_internal/__init__.pyi +1 -0
  2. _bpy_internal/addons/__init__.pyi +7 -0
  3. _bpy_internal/addons/cli/__init__.pyi +8 -0
  4. _bpy_internal/extensions/wheel_manager/__init__.pyi +1 -1
  5. _bpy_internal/freedesktop/__init__.pyi +1 -1
  6. addon_utils/__init__.pyi +6 -5
  7. bl_app_override/__init__.pyi +2 -1
  8. bl_app_template_utils/__init__.pyi +4 -4
  9. bl_console_utils/autocomplete/complete_calltip/__init__.pyi +1 -1
  10. bl_console_utils/autocomplete/complete_namespace/__init__.pyi +2 -2
  11. bl_console_utils/autocomplete/intellisense/__init__.pyi +3 -1
  12. bl_keymap_utils/io/__init__.pyi +4 -2
  13. bl_keymap_utils/keymap_from_toolbar/__init__.pyi +1 -1
  14. bl_keymap_utils/platform_helpers/__init__.pyi +1 -1
  15. bl_operators/__init__.pyi +1 -0
  16. bl_operators/add_mesh_torus/__init__.pyi +1 -1
  17. bl_operators/anim/__init__.pyi +8 -8
  18. bl_operators/assets/__init__.pyi +3 -3
  19. bl_operators/bone_selection_sets/__init__.pyi +2986 -0
  20. bl_operators/clip/__init__.pyi +11 -11
  21. bl_operators/connect_to_output/__init__.pyi +1 -1
  22. bl_operators/console/__init__.pyi +5 -5
  23. bl_operators/constraint/__init__.pyi +4 -4
  24. bl_operators/file/__init__.pyi +3 -3
  25. bl_operators/freestyle/__init__.pyi +4 -4
  26. bl_operators/geometry_nodes/__init__.pyi +4 -4
  27. bl_operators/image/__init__.pyi +4 -4
  28. bl_operators/image_as_planes/__init__.pyi +2 -2
  29. bl_operators/mesh/__init__.pyi +3 -3
  30. bl_operators/node/__init__.pyi +8 -8
  31. bl_operators/object/__init__.pyi +15 -15
  32. bl_operators/object_align/__init__.pyi +1 -1
  33. bl_operators/object_quick_effects/__init__.pyi +4 -4
  34. bl_operators/object_randomize_transform/__init__.pyi +1 -1
  35. bl_operators/presets/__init__.pyi +25 -23
  36. bl_operators/rigidbody/__init__.pyi +3 -3
  37. bl_operators/screen_play_rendered_anim/__init__.pyi +1 -1
  38. bl_operators/sequencer/__init__.pyi +5 -5
  39. bl_operators/spreadsheet/__init__.pyi +1 -1
  40. bl_operators/userpref/__init__.pyi +25 -25
  41. bl_operators/uvcalc_follow_active/__init__.pyi +1 -1
  42. bl_operators/uvcalc_lightmap/__init__.pyi +2 -2
  43. bl_operators/uvcalc_transform/__init__.pyi +2 -2
  44. bl_operators/vertexpaint_dirt/__init__.pyi +1 -1
  45. bl_operators/view3d/__init__.pyi +5 -5
  46. bl_operators/wm/__init__.pyi +46 -42
  47. bl_operators/world/__init__.pyi +1 -1
  48. bl_ui/__init__.pyi +2 -0
  49. bl_ui/anim/__init__.pyi +1 -0
  50. bl_ui/generic_ui_list/__init__.pyi +5 -4
  51. bl_ui/node_add_menu/__init__.pyi +2 -1
  52. bl_ui/node_add_menu_compositor/__init__.pyi +18 -0
  53. bl_ui/node_add_menu_geometry/__init__.pyi +321 -0
  54. bl_ui/node_add_menu_shader/__init__.pyi +10 -0
  55. bl_ui/node_add_menu_texture/__init__.pyi +9 -0
  56. bl_ui/properties_collection/__init__.pyi +1 -0
  57. bl_ui/properties_data_armature/__init__.pyi +1273 -0
  58. bl_ui/properties_data_camera/__init__.pyi +2 -0
  59. bl_ui/properties_data_curves/__init__.pyi +1 -0
  60. bl_ui/properties_data_gpencil/__init__.pyi +2 -0
  61. bl_ui/properties_data_grease_pencil/__init__.pyi +3 -0
  62. bl_ui/properties_data_mesh/__init__.pyi +4 -0
  63. bl_ui/properties_data_modifier/__init__.pyi +8 -1
  64. bl_ui/properties_data_pointcloud/__init__.pyi +1 -0
  65. bl_ui/properties_freestyle/__init__.pyi +1 -0
  66. bl_ui/properties_grease_pencil_common/__init__.pyi +13 -1
  67. bl_ui/properties_mask_common/__init__.pyi +6 -0
  68. bl_ui/properties_material/__init__.pyi +1 -0
  69. bl_ui/properties_material_gpencil/__init__.pyi +2 -0
  70. bl_ui/properties_object/__init__.pyi +1 -0
  71. bl_ui/properties_output/__init__.pyi +3 -0
  72. bl_ui/properties_paint_common/__init__.pyi +48 -17
  73. bl_ui/properties_particle/__init__.pyi +2 -0
  74. bl_ui/properties_physics_cloth/__init__.pyi +1 -0
  75. bl_ui/properties_physics_fluid/__init__.pyi +1 -0
  76. bl_ui/properties_render/__init__.pyi +2 -0
  77. bl_ui/properties_texture/__init__.pyi +1 -0
  78. bl_ui/properties_view_layer/__init__.pyi +1 -0
  79. bl_ui/space_clip/__init__.pyi +31 -0
  80. bl_ui/space_console/__init__.pyi +5 -0
  81. bl_ui/space_dopesheet/__init__.pyi +14 -0
  82. bl_ui/space_filebrowser/__init__.pyi +13 -0
  83. bl_ui/space_graph/__init__.pyi +16 -0
  84. bl_ui/space_image/__init__.pyi +313 -11
  85. bl_ui/space_info/__init__.pyi +5 -0
  86. bl_ui/space_nla/__init__.pyi +13 -0
  87. bl_ui/space_node/__init__.pyi +12 -0
  88. bl_ui/space_outliner/__init__.pyi +12 -0
  89. bl_ui/space_sequencer/__init__.pyi +34 -0
  90. bl_ui/space_text/__init__.pyi +12 -0
  91. bl_ui/space_time/__init__.pyi +4 -0
  92. bl_ui/space_toolsystem_common/__init__.pyi +7 -6
  93. bl_ui/space_toolsystem_toolbar/__init__.pyi +18 -14
  94. bl_ui/space_topbar/__init__.pyi +20 -1
  95. bl_ui/space_userpref/__init__.pyi +8 -0
  96. bl_ui/space_view3d/__init__.pyi +3477 -1372
  97. bl_ui/space_view3d_toolbar/__init__.pyi +1706 -880
  98. bl_ui/utils/__init__.pyi +1 -0
  99. bl_ui_utils/bug_report_url/__init__.pyi +1 -1
  100. bpy/ops/brush/__init__.pyi +185 -11
  101. bpy/ops/extensions/__init__.pyi +15 -1
  102. bpy/ops/gpencil/__init__.pyi +0 -28
  103. bpy/ops/paint/__init__.pyi +0 -48
  104. bpy/ops/pose/__init__.pyi +176 -0
  105. bpy/ops/wm/__init__.pyi +18 -0
  106. bpy/path/__init__.pyi +6 -6
  107. bpy/types/__init__.pyi +30763 -28505
  108. bpy/utils/__init__.pyi +14 -12
  109. bpy_extras/anim_utils/__init__.pyi +3 -3
  110. bpy_extras/view3d_utils/__init__.pyi +2 -0
  111. {fake_bpy_module-20240708.dist-info → fake_bpy_module-20240711.dist-info}/METADATA +1 -1
  112. {fake_bpy_module-20240708.dist-info → fake_bpy_module-20240711.dist-info}/RECORD +119 -116
  113. {fake_bpy_module-20240708.dist-info → fake_bpy_module-20240711.dist-info}/WHEEL +1 -1
  114. freestyle/utils/__init__.pyi +1 -1
  115. mathutils/__init__.pyi +1687 -679
  116. rna_info/__init__.pyi +1 -0
  117. rna_prop_ui/__init__.pyi +2 -1
  118. rna_xml/__init__.pyi +2 -2
  119. {fake_bpy_module-20240708.dist-info → fake_bpy_module-20240711.dist-info}/top_level.txt +0 -0
@@ -415,6 +415,7 @@ class NODE_MT_add(bpy_types._GenericUI):
415
415
  self,
416
416
  searchpaths: list[str],
417
417
  operator: str,
418
+ *,
418
419
  props_default: dict = None,
419
420
  prop_filepath: str | None = "filepath",
420
421
  filter_ext: collections.abc.Callable | None = None,
@@ -685,6 +686,7 @@ class NODE_MT_context_menu(bpy_types._GenericUI):
685
686
  self,
686
687
  searchpaths: list[str],
687
688
  operator: str,
689
+ *,
688
690
  props_default: dict = None,
689
691
  prop_filepath: str | None = "filepath",
690
692
  filter_ext: collections.abc.Callable | None = None,
@@ -955,6 +957,7 @@ class NODE_MT_context_menu_select_menu(bpy_types._GenericUI):
955
957
  self,
956
958
  searchpaths: list[str],
957
959
  operator: str,
960
+ *,
958
961
  props_default: dict = None,
959
962
  prop_filepath: str | None = "filepath",
960
963
  filter_ext: collections.abc.Callable | None = None,
@@ -1225,6 +1228,7 @@ class NODE_MT_context_menu_show_hide_menu(bpy_types._GenericUI):
1225
1228
  self,
1226
1229
  searchpaths: list[str],
1227
1230
  operator: str,
1231
+ *,
1228
1232
  props_default: dict = None,
1229
1233
  prop_filepath: str | None = "filepath",
1230
1234
  filter_ext: collections.abc.Callable | None = None,
@@ -1496,6 +1500,7 @@ class NODE_MT_editor_menus(bpy_types._GenericUI):
1496
1500
  self,
1497
1501
  searchpaths: list[str],
1498
1502
  operator: str,
1503
+ *,
1499
1504
  props_default: dict = None,
1500
1505
  prop_filepath: str | None = "filepath",
1501
1506
  filter_ext: collections.abc.Callable | None = None,
@@ -1766,6 +1771,7 @@ class NODE_MT_node(bpy_types._GenericUI):
1766
1771
  self,
1767
1772
  searchpaths: list[str],
1768
1773
  operator: str,
1774
+ *,
1769
1775
  props_default: dict = None,
1770
1776
  prop_filepath: str | None = "filepath",
1771
1777
  filter_ext: collections.abc.Callable | None = None,
@@ -2036,6 +2042,7 @@ class NODE_MT_node_color_context_menu(bpy_types._GenericUI):
2036
2042
  self,
2037
2043
  searchpaths: list[str],
2038
2044
  operator: str,
2045
+ *,
2039
2046
  props_default: dict = None,
2040
2047
  prop_filepath: str | None = "filepath",
2041
2048
  filter_ext: collections.abc.Callable | None = None,
@@ -2306,6 +2313,7 @@ class NODE_MT_node_tree_interface_context_menu(bpy_types._GenericUI):
2306
2313
  self,
2307
2314
  searchpaths: list[str],
2308
2315
  operator: str,
2316
+ *,
2309
2317
  props_default: dict = None,
2310
2318
  prop_filepath: str | None = "filepath",
2311
2319
  filter_ext: collections.abc.Callable | None = None,
@@ -2576,6 +2584,7 @@ class NODE_MT_select(bpy_types._GenericUI):
2576
2584
  self,
2577
2585
  searchpaths: list[str],
2578
2586
  operator: str,
2587
+ *,
2579
2588
  props_default: dict = None,
2580
2589
  prop_filepath: str | None = "filepath",
2581
2590
  filter_ext: collections.abc.Callable | None = None,
@@ -2846,6 +2855,7 @@ class NODE_MT_view(bpy_types._GenericUI):
2846
2855
  self,
2847
2856
  searchpaths: list[str],
2848
2857
  operator: str,
2858
+ *,
2849
2859
  props_default: dict = None,
2850
2860
  prop_filepath: str | None = "filepath",
2851
2861
  filter_ext: collections.abc.Callable | None = None,
@@ -3116,6 +3126,7 @@ class NODE_MT_view_pie(bpy_types._GenericUI):
3116
3126
  self,
3117
3127
  searchpaths: list[str],
3118
3128
  operator: str,
3129
+ *,
3119
3130
  props_default: dict = None,
3120
3131
  prop_filepath: str | None = "filepath",
3121
3132
  filter_ext: collections.abc.Callable | None = None,
@@ -5664,6 +5675,7 @@ class NODE_PT_node_color_presets(bl_ui.utils.PresetPanel, bpy_types._GenericUI):
5664
5675
  self,
5665
5676
  searchpaths: list[str],
5666
5677
  operator: str,
5678
+ *,
5667
5679
  props_default: dict = None,
5668
5680
  prop_filepath: str | None = "filepath",
5669
5681
  filter_ext: collections.abc.Callable | None = None,
@@ -409,6 +409,7 @@ class OUTLINER_MT_asset(bpy_types._GenericUI):
409
409
  self,
410
410
  searchpaths: list[str],
411
411
  operator: str,
412
+ *,
412
413
  props_default: dict = None,
413
414
  prop_filepath: str | None = "filepath",
414
415
  filter_ext: collections.abc.Callable | None = None,
@@ -686,6 +687,7 @@ class OUTLINER_MT_collection(bpy_types._GenericUI):
686
687
  self,
687
688
  searchpaths: list[str],
688
689
  operator: str,
690
+ *,
689
691
  props_default: dict = None,
690
692
  prop_filepath: str | None = "filepath",
691
693
  filter_ext: collections.abc.Callable | None = None,
@@ -964,6 +966,7 @@ class OUTLINER_MT_collection_new(bpy_types._GenericUI):
964
966
  self,
965
967
  searchpaths: list[str],
966
968
  operator: str,
969
+ *,
967
970
  props_default: dict = None,
968
971
  prop_filepath: str | None = "filepath",
969
972
  filter_ext: collections.abc.Callable | None = None,
@@ -1234,6 +1237,7 @@ class OUTLINER_MT_collection_view_layer(bpy_types._GenericUI):
1234
1237
  self,
1235
1238
  searchpaths: list[str],
1236
1239
  operator: str,
1240
+ *,
1237
1241
  props_default: dict = None,
1238
1242
  prop_filepath: str | None = "filepath",
1239
1243
  filter_ext: collections.abc.Callable | None = None,
@@ -1504,6 +1508,7 @@ class OUTLINER_MT_collection_visibility(bpy_types._GenericUI):
1504
1508
  self,
1505
1509
  searchpaths: list[str],
1506
1510
  operator: str,
1511
+ *,
1507
1512
  props_default: dict = None,
1508
1513
  prop_filepath: str | None = "filepath",
1509
1514
  filter_ext: collections.abc.Callable | None = None,
@@ -1781,6 +1786,7 @@ class OUTLINER_MT_context_menu(bpy_types._GenericUI):
1781
1786
  self,
1782
1787
  searchpaths: list[str],
1783
1788
  operator: str,
1789
+ *,
1784
1790
  props_default: dict = None,
1785
1791
  prop_filepath: str | None = "filepath",
1786
1792
  filter_ext: collections.abc.Callable | None = None,
@@ -2051,6 +2057,7 @@ class OUTLINER_MT_context_menu_view(bpy_types._GenericUI):
2051
2057
  self,
2052
2058
  searchpaths: list[str],
2053
2059
  operator: str,
2060
+ *,
2054
2061
  props_default: dict = None,
2055
2062
  prop_filepath: str | None = "filepath",
2056
2063
  filter_ext: collections.abc.Callable | None = None,
@@ -2321,6 +2328,7 @@ class OUTLINER_MT_edit_datablocks(bpy_types._GenericUI):
2321
2328
  self,
2322
2329
  searchpaths: list[str],
2323
2330
  operator: str,
2331
+ *,
2324
2332
  props_default: dict = None,
2325
2333
  prop_filepath: str | None = "filepath",
2326
2334
  filter_ext: collections.abc.Callable | None = None,
@@ -2592,6 +2600,7 @@ class OUTLINER_MT_editor_menus(bpy_types._GenericUI):
2592
2600
  self,
2593
2601
  searchpaths: list[str],
2594
2602
  operator: str,
2603
+ *,
2595
2604
  props_default: dict = None,
2596
2605
  prop_filepath: str | None = "filepath",
2597
2606
  filter_ext: collections.abc.Callable | None = None,
@@ -2862,6 +2871,7 @@ class OUTLINER_MT_liboverride(bpy_types._GenericUI):
2862
2871
  self,
2863
2872
  searchpaths: list[str],
2864
2873
  operator: str,
2874
+ *,
2865
2875
  props_default: dict = None,
2866
2876
  prop_filepath: str | None = "filepath",
2867
2877
  filter_ext: collections.abc.Callable | None = None,
@@ -3139,6 +3149,7 @@ class OUTLINER_MT_object(bpy_types._GenericUI):
3139
3149
  self,
3140
3150
  searchpaths: list[str],
3141
3151
  operator: str,
3152
+ *,
3142
3153
  props_default: dict = None,
3143
3154
  prop_filepath: str | None = "filepath",
3144
3155
  filter_ext: collections.abc.Callable | None = None,
@@ -3409,6 +3420,7 @@ class OUTLINER_MT_view_pie(bpy_types._GenericUI):
3409
3420
  self,
3410
3421
  searchpaths: list[str],
3411
3422
  operator: str,
3423
+ *,
3412
3424
  props_default: dict = None,
3413
3425
  prop_filepath: str | None = "filepath",
3414
3426
  filter_ext: collections.abc.Callable | None = None,
@@ -638,6 +638,7 @@ class SEQUENCER_MT_add(bpy_types._GenericUI):
638
638
  self,
639
639
  searchpaths: list[str],
640
640
  operator: str,
641
+ *,
641
642
  props_default: dict = None,
642
643
  prop_filepath: str | None = "filepath",
643
644
  filter_ext: collections.abc.Callable | None = None,
@@ -908,6 +909,7 @@ class SEQUENCER_MT_add_effect(bpy_types._GenericUI):
908
909
  self,
909
910
  searchpaths: list[str],
910
911
  operator: str,
912
+ *,
911
913
  props_default: dict = None,
912
914
  prop_filepath: str | None = "filepath",
913
915
  filter_ext: collections.abc.Callable | None = None,
@@ -1178,6 +1180,7 @@ class SEQUENCER_MT_add_empty(bpy_types._GenericUI):
1178
1180
  self,
1179
1181
  searchpaths: list[str],
1180
1182
  operator: str,
1183
+ *,
1181
1184
  props_default: dict = None,
1182
1185
  prop_filepath: str | None = "filepath",
1183
1186
  filter_ext: collections.abc.Callable | None = None,
@@ -1449,6 +1452,7 @@ class SEQUENCER_MT_add_scene(bpy_types._GenericUI):
1449
1452
  self,
1450
1453
  searchpaths: list[str],
1451
1454
  operator: str,
1455
+ *,
1452
1456
  props_default: dict = None,
1453
1457
  prop_filepath: str | None = "filepath",
1454
1458
  filter_ext: collections.abc.Callable | None = None,
@@ -1719,6 +1723,7 @@ class SEQUENCER_MT_add_transitions(bpy_types._GenericUI):
1719
1723
  self,
1720
1724
  searchpaths: list[str],
1721
1725
  operator: str,
1726
+ *,
1722
1727
  props_default: dict = None,
1723
1728
  prop_filepath: str | None = "filepath",
1724
1729
  filter_ext: collections.abc.Callable | None = None,
@@ -1989,6 +1994,7 @@ class SEQUENCER_MT_change(bpy_types._GenericUI):
1989
1994
  self,
1990
1995
  searchpaths: list[str],
1991
1996
  operator: str,
1997
+ *,
1992
1998
  props_default: dict = None,
1993
1999
  prop_filepath: str | None = "filepath",
1994
2000
  filter_ext: collections.abc.Callable | None = None,
@@ -2268,6 +2274,7 @@ class SEQUENCER_MT_color_tag_picker(SequencerColorTagPicker, bpy_types._GenericU
2268
2274
  self,
2269
2275
  searchpaths: list[str],
2270
2276
  operator: str,
2277
+ *,
2271
2278
  props_default: dict = None,
2272
2279
  prop_filepath: str | None = "filepath",
2273
2280
  filter_ext: collections.abc.Callable | None = None,
@@ -2559,6 +2566,7 @@ class SEQUENCER_MT_context_menu(bpy_types._GenericUI):
2559
2566
  self,
2560
2567
  searchpaths: list[str],
2561
2568
  operator: str,
2569
+ *,
2562
2570
  props_default: dict = None,
2563
2571
  prop_filepath: str | None = "filepath",
2564
2572
  filter_ext: collections.abc.Callable | None = None,
@@ -2830,6 +2838,7 @@ class SEQUENCER_MT_editor_menus(bpy_types._GenericUI):
2830
2838
  self,
2831
2839
  searchpaths: list[str],
2832
2840
  operator: str,
2841
+ *,
2833
2842
  props_default: dict = None,
2834
2843
  prop_filepath: str | None = "filepath",
2835
2844
  filter_ext: collections.abc.Callable | None = None,
@@ -3100,6 +3109,7 @@ class SEQUENCER_MT_image(bpy_types._GenericUI):
3100
3109
  self,
3101
3110
  searchpaths: list[str],
3102
3111
  operator: str,
3112
+ *,
3103
3113
  props_default: dict = None,
3104
3114
  prop_filepath: str | None = "filepath",
3105
3115
  filter_ext: collections.abc.Callable | None = None,
@@ -3370,6 +3380,7 @@ class SEQUENCER_MT_image_apply(bpy_types._GenericUI):
3370
3380
  self,
3371
3381
  searchpaths: list[str],
3372
3382
  operator: str,
3383
+ *,
3373
3384
  props_default: dict = None,
3374
3385
  prop_filepath: str | None = "filepath",
3375
3386
  filter_ext: collections.abc.Callable | None = None,
@@ -3640,6 +3651,7 @@ class SEQUENCER_MT_image_clear(bpy_types._GenericUI):
3640
3651
  self,
3641
3652
  searchpaths: list[str],
3642
3653
  operator: str,
3654
+ *,
3643
3655
  props_default: dict = None,
3644
3656
  prop_filepath: str | None = "filepath",
3645
3657
  filter_ext: collections.abc.Callable | None = None,
@@ -3910,6 +3922,7 @@ class SEQUENCER_MT_image_transform(bpy_types._GenericUI):
3910
3922
  self,
3911
3923
  searchpaths: list[str],
3912
3924
  operator: str,
3925
+ *,
3913
3926
  props_default: dict = None,
3914
3927
  prop_filepath: str | None = "filepath",
3915
3928
  filter_ext: collections.abc.Callable | None = None,
@@ -4180,6 +4193,7 @@ class SEQUENCER_MT_marker(bpy_types._GenericUI):
4180
4193
  self,
4181
4194
  searchpaths: list[str],
4182
4195
  operator: str,
4196
+ *,
4183
4197
  props_default: dict = None,
4184
4198
  prop_filepath: str | None = "filepath",
4185
4199
  filter_ext: collections.abc.Callable | None = None,
@@ -4450,6 +4464,7 @@ class SEQUENCER_MT_navigation(bpy_types._GenericUI):
4450
4464
  self,
4451
4465
  searchpaths: list[str],
4452
4466
  operator: str,
4467
+ *,
4453
4468
  props_default: dict = None,
4454
4469
  prop_filepath: str | None = "filepath",
4455
4470
  filter_ext: collections.abc.Callable | None = None,
@@ -4720,6 +4735,7 @@ class SEQUENCER_MT_pivot_pie(bpy_types._GenericUI):
4720
4735
  self,
4721
4736
  searchpaths: list[str],
4722
4737
  operator: str,
4738
+ *,
4723
4739
  props_default: dict = None,
4724
4740
  prop_filepath: str | None = "filepath",
4725
4741
  filter_ext: collections.abc.Callable | None = None,
@@ -4990,6 +5006,7 @@ class SEQUENCER_MT_preview_context_menu(bpy_types._GenericUI):
4990
5006
  self,
4991
5007
  searchpaths: list[str],
4992
5008
  operator: str,
5009
+ *,
4993
5010
  props_default: dict = None,
4994
5011
  prop_filepath: str | None = "filepath",
4995
5012
  filter_ext: collections.abc.Callable | None = None,
@@ -5260,6 +5277,7 @@ class SEQUENCER_MT_preview_view_pie(bpy_types._GenericUI):
5260
5277
  self,
5261
5278
  searchpaths: list[str],
5262
5279
  operator: str,
5280
+ *,
5263
5281
  props_default: dict = None,
5264
5282
  prop_filepath: str | None = "filepath",
5265
5283
  filter_ext: collections.abc.Callable | None = None,
@@ -5530,6 +5548,7 @@ class SEQUENCER_MT_preview_zoom(bpy_types._GenericUI):
5530
5548
  self,
5531
5549
  searchpaths: list[str],
5532
5550
  operator: str,
5551
+ *,
5533
5552
  props_default: dict = None,
5534
5553
  prop_filepath: str | None = "filepath",
5535
5554
  filter_ext: collections.abc.Callable | None = None,
@@ -5800,6 +5819,7 @@ class SEQUENCER_MT_proxy(bpy_types._GenericUI):
5800
5819
  self,
5801
5820
  searchpaths: list[str],
5802
5821
  operator: str,
5822
+ *,
5803
5823
  props_default: dict = None,
5804
5824
  prop_filepath: str | None = "filepath",
5805
5825
  filter_ext: collections.abc.Callable | None = None,
@@ -6070,6 +6090,7 @@ class SEQUENCER_MT_range(bpy_types._GenericUI):
6070
6090
  self,
6071
6091
  searchpaths: list[str],
6072
6092
  operator: str,
6093
+ *,
6073
6094
  props_default: dict = None,
6074
6095
  prop_filepath: str | None = "filepath",
6075
6096
  filter_ext: collections.abc.Callable | None = None,
@@ -6341,6 +6362,7 @@ class SEQUENCER_MT_retiming(bpy_types._GenericUI):
6341
6362
  self,
6342
6363
  searchpaths: list[str],
6343
6364
  operator: str,
6365
+ *,
6344
6366
  props_default: dict = None,
6345
6367
  prop_filepath: str | None = "filepath",
6346
6368
  filter_ext: collections.abc.Callable | None = None,
@@ -6611,6 +6633,7 @@ class SEQUENCER_MT_select(bpy_types._GenericUI):
6611
6633
  self,
6612
6634
  searchpaths: list[str],
6613
6635
  operator: str,
6636
+ *,
6614
6637
  props_default: dict = None,
6615
6638
  prop_filepath: str | None = "filepath",
6616
6639
  filter_ext: collections.abc.Callable | None = None,
@@ -6881,6 +6904,7 @@ class SEQUENCER_MT_select_channel(bpy_types._GenericUI):
6881
6904
  self,
6882
6905
  searchpaths: list[str],
6883
6906
  operator: str,
6907
+ *,
6884
6908
  props_default: dict = None,
6885
6909
  prop_filepath: str | None = "filepath",
6886
6910
  filter_ext: collections.abc.Callable | None = None,
@@ -7151,6 +7175,7 @@ class SEQUENCER_MT_select_handle(bpy_types._GenericUI):
7151
7175
  self,
7152
7176
  searchpaths: list[str],
7153
7177
  operator: str,
7178
+ *,
7154
7179
  props_default: dict = None,
7155
7180
  prop_filepath: str | None = "filepath",
7156
7181
  filter_ext: collections.abc.Callable | None = None,
@@ -7421,6 +7446,7 @@ class SEQUENCER_MT_strip(bpy_types._GenericUI):
7421
7446
  self,
7422
7447
  searchpaths: list[str],
7423
7448
  operator: str,
7449
+ *,
7424
7450
  props_default: dict = None,
7425
7451
  prop_filepath: str | None = "filepath",
7426
7452
  filter_ext: collections.abc.Callable | None = None,
@@ -7691,6 +7717,7 @@ class SEQUENCER_MT_strip_effect(bpy_types._GenericUI):
7691
7717
  self,
7692
7718
  searchpaths: list[str],
7693
7719
  operator: str,
7720
+ *,
7694
7721
  props_default: dict = None,
7695
7722
  prop_filepath: str | None = "filepath",
7696
7723
  filter_ext: collections.abc.Callable | None = None,
@@ -7961,6 +7988,7 @@ class SEQUENCER_MT_strip_input(bpy_types._GenericUI):
7961
7988
  self,
7962
7989
  searchpaths: list[str],
7963
7990
  operator: str,
7991
+ *,
7964
7992
  props_default: dict = None,
7965
7993
  prop_filepath: str | None = "filepath",
7966
7994
  filter_ext: collections.abc.Callable | None = None,
@@ -8231,6 +8259,7 @@ class SEQUENCER_MT_strip_lock_mute(bpy_types._GenericUI):
8231
8259
  self,
8232
8260
  searchpaths: list[str],
8233
8261
  operator: str,
8262
+ *,
8234
8263
  props_default: dict = None,
8235
8264
  prop_filepath: str | None = "filepath",
8236
8265
  filter_ext: collections.abc.Callable | None = None,
@@ -8501,6 +8530,7 @@ class SEQUENCER_MT_strip_movie(bpy_types._GenericUI):
8501
8530
  self,
8502
8531
  searchpaths: list[str],
8503
8532
  operator: str,
8533
+ *,
8504
8534
  props_default: dict = None,
8505
8535
  prop_filepath: str | None = "filepath",
8506
8536
  filter_ext: collections.abc.Callable | None = None,
@@ -8771,6 +8801,7 @@ class SEQUENCER_MT_strip_retiming(bpy_types._GenericUI):
8771
8801
  self,
8772
8802
  searchpaths: list[str],
8773
8803
  operator: str,
8804
+ *,
8774
8805
  props_default: dict = None,
8775
8806
  prop_filepath: str | None = "filepath",
8776
8807
  filter_ext: collections.abc.Callable | None = None,
@@ -9041,6 +9072,7 @@ class SEQUENCER_MT_strip_transform(bpy_types._GenericUI):
9041
9072
  self,
9042
9073
  searchpaths: list[str],
9043
9074
  operator: str,
9075
+ *,
9044
9076
  props_default: dict = None,
9045
9077
  prop_filepath: str | None = "filepath",
9046
9078
  filter_ext: collections.abc.Callable | None = None,
@@ -9311,6 +9343,7 @@ class SEQUENCER_MT_view(bpy_types._GenericUI):
9311
9343
  self,
9312
9344
  searchpaths: list[str],
9313
9345
  operator: str,
9346
+ *,
9314
9347
  props_default: dict = None,
9315
9348
  prop_filepath: str | None = "filepath",
9316
9349
  filter_ext: collections.abc.Callable | None = None,
@@ -9581,6 +9614,7 @@ class SEQUENCER_MT_view_pie(bpy_types._GenericUI):
9581
9614
  self,
9582
9615
  searchpaths: list[str],
9583
9616
  operator: str,
9617
+ *,
9584
9618
  props_default: dict = None,
9585
9619
  prop_filepath: str | None = "filepath",
9586
9620
  filter_ext: collections.abc.Callable | None = None,
@@ -626,6 +626,7 @@ class TEXT_MT_context_menu(bpy_types._GenericUI):
626
626
  self,
627
627
  searchpaths: list[str],
628
628
  operator: str,
629
+ *,
629
630
  props_default: dict = None,
630
631
  prop_filepath: str | None = "filepath",
631
632
  filter_ext: collections.abc.Callable | None = None,
@@ -896,6 +897,7 @@ class TEXT_MT_edit(bpy_types._GenericUI):
896
897
  self,
897
898
  searchpaths: list[str],
898
899
  operator: str,
900
+ *,
899
901
  props_default: dict = None,
900
902
  prop_filepath: str | None = "filepath",
901
903
  filter_ext: collections.abc.Callable | None = None,
@@ -1173,6 +1175,7 @@ class TEXT_MT_edit_to3d(bpy_types._GenericUI):
1173
1175
  self,
1174
1176
  searchpaths: list[str],
1175
1177
  operator: str,
1178
+ *,
1176
1179
  props_default: dict = None,
1177
1180
  prop_filepath: str | None = "filepath",
1178
1181
  filter_ext: collections.abc.Callable | None = None,
@@ -1444,6 +1447,7 @@ class TEXT_MT_editor_menus(bpy_types._GenericUI):
1444
1447
  self,
1445
1448
  searchpaths: list[str],
1446
1449
  operator: str,
1450
+ *,
1447
1451
  props_default: dict = None,
1448
1452
  prop_filepath: str | None = "filepath",
1449
1453
  filter_ext: collections.abc.Callable | None = None,
@@ -1714,6 +1718,7 @@ class TEXT_MT_format(bpy_types._GenericUI):
1714
1718
  self,
1715
1719
  searchpaths: list[str],
1716
1720
  operator: str,
1721
+ *,
1717
1722
  props_default: dict = None,
1718
1723
  prop_filepath: str | None = "filepath",
1719
1724
  filter_ext: collections.abc.Callable | None = None,
@@ -1984,6 +1989,7 @@ class TEXT_MT_select(bpy_types._GenericUI):
1984
1989
  self,
1985
1990
  searchpaths: list[str],
1986
1991
  operator: str,
1992
+ *,
1987
1993
  props_default: dict = None,
1988
1994
  prop_filepath: str | None = "filepath",
1989
1995
  filter_ext: collections.abc.Callable | None = None,
@@ -2254,6 +2260,7 @@ class TEXT_MT_templates(bpy_types._GenericUI):
2254
2260
  self,
2255
2261
  searchpaths: list[str],
2256
2262
  operator: str,
2263
+ *,
2257
2264
  props_default: dict = None,
2258
2265
  prop_filepath: str | None = "filepath",
2259
2266
  filter_ext: collections.abc.Callable | None = None,
@@ -2524,6 +2531,7 @@ class TEXT_MT_templates_osl(bpy_types._GenericUI):
2524
2531
  self,
2525
2532
  searchpaths: list[str],
2526
2533
  operator: str,
2534
+ *,
2527
2535
  props_default: dict = None,
2528
2536
  prop_filepath: str | None = "filepath",
2529
2537
  filter_ext: collections.abc.Callable | None = None,
@@ -2794,6 +2802,7 @@ class TEXT_MT_templates_py(bpy_types._GenericUI):
2794
2802
  self,
2795
2803
  searchpaths: list[str],
2796
2804
  operator: str,
2805
+ *,
2797
2806
  props_default: dict = None,
2798
2807
  prop_filepath: str | None = "filepath",
2799
2808
  filter_ext: collections.abc.Callable | None = None,
@@ -3064,6 +3073,7 @@ class TEXT_MT_text(bpy_types._GenericUI):
3064
3073
  self,
3065
3074
  searchpaths: list[str],
3066
3075
  operator: str,
3076
+ *,
3067
3077
  props_default: dict = None,
3068
3078
  prop_filepath: str | None = "filepath",
3069
3079
  filter_ext: collections.abc.Callable | None = None,
@@ -3334,6 +3344,7 @@ class TEXT_MT_view(bpy_types._GenericUI):
3334
3344
  self,
3335
3345
  searchpaths: list[str],
3336
3346
  operator: str,
3347
+ *,
3337
3348
  props_default: dict = None,
3338
3349
  prop_filepath: str | None = "filepath",
3339
3350
  filter_ext: collections.abc.Callable | None = None,
@@ -3604,6 +3615,7 @@ class TEXT_MT_view_navigation(bpy_types._GenericUI):
3604
3615
  self,
3605
3616
  searchpaths: list[str],
3606
3617
  operator: str,
3618
+ *,
3607
3619
  props_default: dict = None,
3608
3620
  prop_filepath: str | None = "filepath",
3609
3621
  filter_ext: collections.abc.Callable | None = None,
@@ -202,6 +202,7 @@ class TIME_MT_cache(bpy_types._GenericUI):
202
202
  self,
203
203
  searchpaths: list[str],
204
204
  operator: str,
205
+ *,
205
206
  props_default: dict = None,
206
207
  prop_filepath: str | None = "filepath",
207
208
  filter_ext: collections.abc.Callable | None = None,
@@ -473,6 +474,7 @@ class TIME_MT_editor_menus(bpy_types._GenericUI):
473
474
  self,
474
475
  searchpaths: list[str],
475
476
  operator: str,
477
+ *,
476
478
  props_default: dict = None,
477
479
  prop_filepath: str | None = "filepath",
478
480
  filter_ext: collections.abc.Callable | None = None,
@@ -743,6 +745,7 @@ class TIME_MT_marker(bpy_types._GenericUI):
743
745
  self,
744
746
  searchpaths: list[str],
745
747
  operator: str,
748
+ *,
746
749
  props_default: dict = None,
747
750
  prop_filepath: str | None = "filepath",
748
751
  filter_ext: collections.abc.Callable | None = None,
@@ -1013,6 +1016,7 @@ class TIME_MT_view(bpy_types._GenericUI):
1013
1016
  self,
1014
1017
  searchpaths: list[str],
1015
1018
  operator: str,
1019
+ *,
1016
1020
  props_default: dict = None,
1017
1021
  prop_filepath: str | None = "filepath",
1018
1022
  filter_ext: collections.abc.Callable | None = None,
@@ -70,7 +70,7 @@ class ToolSelectPanelHelper:
70
70
  ...
71
71
 
72
72
  def draw_active_tool_fallback(
73
- self, context, layout, tool, is_horizontal_layout=False
73
+ self, context, layout, tool, *, is_horizontal_layout=False
74
74
  ):
75
75
  """
76
76
 
@@ -82,7 +82,7 @@ class ToolSelectPanelHelper:
82
82
  ...
83
83
 
84
84
  def draw_active_tool_header(
85
- self, context, layout, show_tool_icon_always=False, tool_key=None
85
+ self, context, layout, *, show_tool_icon_always=False, tool_key=None
86
86
  ):
87
87
  """
88
88
 
@@ -201,6 +201,7 @@ class WM_MT_toolsystem_submenu(bpy_types._GenericUI):
201
201
  self,
202
202
  searchpaths,
203
203
  operator,
204
+ *,
204
205
  props_default=None,
205
206
  prop_filepath="filepath",
206
207
  filter_ext=None,
@@ -244,15 +245,15 @@ class WM_MT_toolsystem_submenu(bpy_types._GenericUI):
244
245
  def type_recast(self): ...
245
246
  def values(self): ...
246
247
 
247
- def activate_by_id(context, space_type, idname, as_fallback=False): ...
248
+ def activate_by_id(context, space_type, idname, *, as_fallback=False): ...
248
249
  def activate_by_id_or_cycle(
249
- context, space_type, idname, offset=1, as_fallback=False
250
+ context, space_type, idname, *, offset=1, as_fallback=False
250
251
  ): ...
251
- def description_from_id(context, space_type, idname, use_operator=True): ...
252
+ def description_from_id(context, space_type, idname, *, use_operator=True): ...
252
253
  def item_from_flat_index(context, space_type, index): ...
253
254
  def item_from_id(context, space_type, idname): ...
254
255
  def item_from_id_active(context, space_type, idname): ...
255
256
  def item_from_id_active_with_group(context, space_type, idname): ...
256
257
  def item_from_index_active(context, space_type, index): ...
257
- def item_group_from_id(context, space_type, idname, coerce=False): ...
258
+ def item_group_from_id(context, space_type, idname, *, coerce=False): ...
258
259
  def keymap_from_id(context, space_type, idname): ...