fake-bpy-module 20240707__py3-none-any.whl → 20240709__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 (118) 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 +49 -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 -13
  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. bmesh/types/__init__.pyi +48 -0
  101. bpy/ops/brush/__init__.pyi +185 -11
  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 +2544 -1063
  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-20240707.dist-info → fake_bpy_module-20240709.dist-info}/METADATA +4 -4
  112. {fake_bpy_module-20240707.dist-info → fake_bpy_module-20240709.dist-info}/RECORD +118 -115
  113. mathutils/__init__.pyi +0 -44
  114. rna_info/__init__.pyi +1 -0
  115. rna_prop_ui/__init__.pyi +2 -1
  116. rna_xml/__init__.pyi +2 -2
  117. {fake_bpy_module-20240707.dist-info → fake_bpy_module-20240709.dist-info}/WHEEL +0 -0
  118. {fake_bpy_module-20240707.dist-info → fake_bpy_module-20240709.dist-info}/top_level.txt +0 -0
@@ -377,6 +377,7 @@ class WM_MT_region_toggle_pie(bpy_types._GenericUI):
377
377
  self,
378
378
  searchpaths: list[str],
379
379
  operator: str,
380
+ *,
380
381
  props_default: dict = None,
381
382
  prop_filepath: str | None = "filepath",
382
383
  filter_ext: collections.abc.Callable | None = None,
@@ -654,6 +655,7 @@ class WM_MT_splash(bpy_types._GenericUI):
654
655
  self,
655
656
  searchpaths: list[str],
656
657
  operator: str,
658
+ *,
657
659
  props_default: dict = None,
658
660
  prop_filepath: str | None = "filepath",
659
661
  filter_ext: collections.abc.Callable | None = None,
@@ -924,6 +926,7 @@ class WM_MT_splash_about(bpy_types._GenericUI):
924
926
  self,
925
927
  searchpaths: list[str],
926
928
  operator: str,
929
+ *,
927
930
  props_default: dict = None,
928
931
  prop_filepath: str | None = "filepath",
929
932
  filter_ext: collections.abc.Callable | None = None,
@@ -1194,6 +1197,7 @@ class WM_MT_splash_quick_setup(bpy_types._GenericUI):
1194
1197
  self,
1195
1198
  searchpaths: list[str],
1196
1199
  operator: str,
1200
+ *,
1197
1201
  props_default: dict = None,
1198
1202
  prop_filepath: str | None = "filepath",
1199
1203
  filter_ext: collections.abc.Callable | None = None,
@@ -1287,7 +1291,7 @@ class WM_OT_batch_rename:
1287
1291
  bl_rna: typing.Any
1288
1292
  id_data: typing.Any
1289
1293
 
1290
- def as_keywords(self, ignore=()):
1294
+ def as_keywords(self, *, ignore=()):
1291
1295
  """Return a copy of the properties as a dictionary
1292
1296
 
1293
1297
  :param ignore:
@@ -1516,7 +1520,7 @@ class WM_OT_context_collection_boolean_set:
1516
1520
  bl_rna: typing.Any
1517
1521
  id_data: typing.Any
1518
1522
 
1519
- def as_keywords(self, ignore=()):
1523
+ def as_keywords(self, *, ignore=()):
1520
1524
  """Return a copy of the properties as a dictionary
1521
1525
 
1522
1526
  :param ignore:
@@ -1723,7 +1727,7 @@ class WM_OT_context_cycle_array:
1723
1727
  bl_rna: typing.Any
1724
1728
  id_data: typing.Any
1725
1729
 
1726
- def as_keywords(self, ignore=()):
1730
+ def as_keywords(self, *, ignore=()):
1727
1731
  """Return a copy of the properties as a dictionary
1728
1732
 
1729
1733
  :param ignore:
@@ -1938,7 +1942,7 @@ class WM_OT_context_cycle_enum:
1938
1942
  bl_rna: typing.Any
1939
1943
  id_data: typing.Any
1940
1944
 
1941
- def as_keywords(self, ignore=()):
1945
+ def as_keywords(self, *, ignore=()):
1942
1946
  """Return a copy of the properties as a dictionary
1943
1947
 
1944
1948
  :param ignore:
@@ -2153,7 +2157,7 @@ class WM_OT_context_cycle_int:
2153
2157
  bl_rna: typing.Any
2154
2158
  id_data: typing.Any
2155
2159
 
2156
- def as_keywords(self, ignore=()):
2160
+ def as_keywords(self, *, ignore=()):
2157
2161
  """Return a copy of the properties as a dictionary
2158
2162
 
2159
2163
  :param ignore:
@@ -2366,7 +2370,7 @@ class WM_OT_context_menu_enum:
2366
2370
  bl_rna: typing.Any
2367
2371
  id_data: typing.Any
2368
2372
 
2369
- def as_keywords(self, ignore=()):
2373
+ def as_keywords(self, *, ignore=()):
2370
2374
  """Return a copy of the properties as a dictionary
2371
2375
 
2372
2376
  :param ignore:
@@ -2581,7 +2585,7 @@ class WM_OT_context_modal_mouse:
2581
2585
  bl_rna: typing.Any
2582
2586
  id_data: typing.Any
2583
2587
 
2584
- def as_keywords(self, ignore=()):
2588
+ def as_keywords(self, *, ignore=()):
2585
2589
  """Return a copy of the properties as a dictionary
2586
2590
 
2587
2591
  :param ignore:
@@ -2795,7 +2799,7 @@ class WM_OT_context_pie_enum:
2795
2799
  bl_rna: typing.Any
2796
2800
  id_data: typing.Any
2797
2801
 
2798
- def as_keywords(self, ignore=()):
2802
+ def as_keywords(self, *, ignore=()):
2799
2803
  """Return a copy of the properties as a dictionary
2800
2804
 
2801
2805
  :param ignore:
@@ -3011,7 +3015,7 @@ class WM_OT_context_scale_float:
3011
3015
  bl_rna: typing.Any
3012
3016
  id_data: typing.Any
3013
3017
 
3014
- def as_keywords(self, ignore=()):
3018
+ def as_keywords(self, *, ignore=()):
3015
3019
  """Return a copy of the properties as a dictionary
3016
3020
 
3017
3021
  :param ignore:
@@ -3226,7 +3230,7 @@ class WM_OT_context_scale_int:
3226
3230
  bl_rna: typing.Any
3227
3231
  id_data: typing.Any
3228
3232
 
3229
- def as_keywords(self, ignore=()):
3233
+ def as_keywords(self, *, ignore=()):
3230
3234
  """Return a copy of the properties as a dictionary
3231
3235
 
3232
3236
  :param ignore:
@@ -3441,7 +3445,7 @@ class WM_OT_context_set_boolean:
3441
3445
  bl_rna: typing.Any
3442
3446
  id_data: typing.Any
3443
3447
 
3444
- def as_keywords(self, ignore=()):
3448
+ def as_keywords(self, *, ignore=()):
3445
3449
  """Return a copy of the properties as a dictionary
3446
3450
 
3447
3451
  :param ignore:
@@ -3656,7 +3660,7 @@ class WM_OT_context_set_enum:
3656
3660
  bl_rna: typing.Any
3657
3661
  id_data: typing.Any
3658
3662
 
3659
- def as_keywords(self, ignore=()):
3663
+ def as_keywords(self, *, ignore=()):
3660
3664
  """Return a copy of the properties as a dictionary
3661
3665
 
3662
3666
  :param ignore:
@@ -3871,7 +3875,7 @@ class WM_OT_context_set_float:
3871
3875
  bl_rna: typing.Any
3872
3876
  id_data: typing.Any
3873
3877
 
3874
- def as_keywords(self, ignore=()):
3878
+ def as_keywords(self, *, ignore=()):
3875
3879
  """Return a copy of the properties as a dictionary
3876
3880
 
3877
3881
  :param ignore:
@@ -4086,7 +4090,7 @@ class WM_OT_context_set_id:
4086
4090
  bl_rna: typing.Any
4087
4091
  id_data: typing.Any
4088
4092
 
4089
- def as_keywords(self, ignore=()):
4093
+ def as_keywords(self, *, ignore=()):
4090
4094
  """Return a copy of the properties as a dictionary
4091
4095
 
4092
4096
  :param ignore:
@@ -4293,7 +4297,7 @@ class WM_OT_context_set_int:
4293
4297
  bl_rna: typing.Any
4294
4298
  id_data: typing.Any
4295
4299
 
4296
- def as_keywords(self, ignore=()):
4300
+ def as_keywords(self, *, ignore=()):
4297
4301
  """Return a copy of the properties as a dictionary
4298
4302
 
4299
4303
  :param ignore:
@@ -4508,7 +4512,7 @@ class WM_OT_context_set_string:
4508
4512
  bl_rna: typing.Any
4509
4513
  id_data: typing.Any
4510
4514
 
4511
- def as_keywords(self, ignore=()):
4515
+ def as_keywords(self, *, ignore=()):
4512
4516
  """Return a copy of the properties as a dictionary
4513
4517
 
4514
4518
  :param ignore:
@@ -4723,7 +4727,7 @@ class WM_OT_context_set_value:
4723
4727
  bl_rna: typing.Any
4724
4728
  id_data: typing.Any
4725
4729
 
4726
- def as_keywords(self, ignore=()):
4730
+ def as_keywords(self, *, ignore=()):
4727
4731
  """Return a copy of the properties as a dictionary
4728
4732
 
4729
4733
  :param ignore:
@@ -4938,7 +4942,7 @@ class WM_OT_context_toggle:
4938
4942
  bl_rna: typing.Any
4939
4943
  id_data: typing.Any
4940
4944
 
4941
- def as_keywords(self, ignore=()):
4945
+ def as_keywords(self, *, ignore=()):
4942
4946
  """Return a copy of the properties as a dictionary
4943
4947
 
4944
4948
  :param ignore:
@@ -5153,7 +5157,7 @@ class WM_OT_context_toggle_enum:
5153
5157
  bl_rna: typing.Any
5154
5158
  id_data: typing.Any
5155
5159
 
5156
- def as_keywords(self, ignore=()):
5160
+ def as_keywords(self, *, ignore=()):
5157
5161
  """Return a copy of the properties as a dictionary
5158
5162
 
5159
5163
  :param ignore:
@@ -5367,7 +5371,7 @@ class WM_OT_doc_view:
5367
5371
  bl_rna: typing.Any
5368
5372
  id_data: typing.Any
5369
5373
 
5370
- def as_keywords(self, ignore=()):
5374
+ def as_keywords(self, *, ignore=()):
5371
5375
  """Return a copy of the properties as a dictionary
5372
5376
 
5373
5377
  :param ignore:
@@ -5573,7 +5577,7 @@ class WM_OT_doc_view_manual:
5573
5577
  bl_rna: typing.Any
5574
5578
  id_data: typing.Any
5575
5579
 
5576
- def as_keywords(self, ignore=()):
5580
+ def as_keywords(self, *, ignore=()):
5577
5581
  """Return a copy of the properties as a dictionary
5578
5582
 
5579
5583
  :param ignore:
@@ -5778,7 +5782,7 @@ class WM_OT_drop_blend_file:
5778
5782
  bl_rna: typing.Any
5779
5783
  id_data: typing.Any
5780
5784
 
5781
- def as_keywords(self, ignore=()):
5785
+ def as_keywords(self, *, ignore=()):
5782
5786
  """Return a copy of the properties as a dictionary
5783
5787
 
5784
5788
  :param ignore:
@@ -5993,7 +5997,7 @@ class WM_OT_operator_cheat_sheet:
5993
5997
  bl_rna: typing.Any
5994
5998
  id_data: typing.Any
5995
5999
 
5996
- def as_keywords(self, ignore=()):
6000
+ def as_keywords(self, *, ignore=()):
5997
6001
  """Return a copy of the properties as a dictionary
5998
6002
 
5999
6003
  :param ignore:
@@ -6198,7 +6202,7 @@ class WM_OT_operator_pie_enum:
6198
6202
  bl_rna: typing.Any
6199
6203
  id_data: typing.Any
6200
6204
 
6201
- def as_keywords(self, ignore=()):
6205
+ def as_keywords(self, *, ignore=()):
6202
6206
  """Return a copy of the properties as a dictionary
6203
6207
 
6204
6208
  :param ignore:
@@ -6413,7 +6417,7 @@ class WM_OT_owner_disable:
6413
6417
  bl_rna: typing.Any
6414
6418
  id_data: typing.Any
6415
6419
 
6416
- def as_keywords(self, ignore=()):
6420
+ def as_keywords(self, *, ignore=()):
6417
6421
  """Return a copy of the properties as a dictionary
6418
6422
 
6419
6423
  :param ignore:
@@ -6619,7 +6623,7 @@ class WM_OT_owner_enable:
6619
6623
  bl_rna: typing.Any
6620
6624
  id_data: typing.Any
6621
6625
 
6622
- def as_keywords(self, ignore=()):
6626
+ def as_keywords(self, *, ignore=()):
6623
6627
  """Return a copy of the properties as a dictionary
6624
6628
 
6625
6629
  :param ignore:
@@ -6826,7 +6830,7 @@ class WM_OT_path_open:
6826
6830
  bl_rna: typing.Any
6827
6831
  id_data: typing.Any
6828
6832
 
6829
- def as_keywords(self, ignore=()):
6833
+ def as_keywords(self, *, ignore=()):
6830
6834
  """Return a copy of the properties as a dictionary
6831
6835
 
6832
6836
  :param ignore:
@@ -7033,7 +7037,7 @@ class WM_OT_properties_add:
7033
7037
  bl_rna: typing.Any
7034
7038
  id_data: typing.Any
7035
7039
 
7036
- def as_keywords(self, ignore=()):
7040
+ def as_keywords(self, *, ignore=()):
7037
7041
  """Return a copy of the properties as a dictionary
7038
7042
 
7039
7043
  :param ignore:
@@ -7240,7 +7244,7 @@ class WM_OT_properties_context_change:
7240
7244
  bl_rna: typing.Any
7241
7245
  id_data: typing.Any
7242
7246
 
7243
- def as_keywords(self, ignore=()):
7247
+ def as_keywords(self, *, ignore=()):
7244
7248
  """Return a copy of the properties as a dictionary
7245
7249
 
7246
7250
  :param ignore:
@@ -7447,7 +7451,7 @@ class WM_OT_properties_edit:
7447
7451
  bl_rna: typing.Any
7448
7452
  id_data: typing.Any
7449
7453
 
7450
- def as_keywords(self, ignore=()):
7454
+ def as_keywords(self, *, ignore=()):
7451
7455
  """Return a copy of the properties as a dictionary
7452
7456
 
7453
7457
  :param ignore:
@@ -7714,7 +7718,7 @@ class WM_OT_properties_edit_value:
7714
7718
  bl_rna: typing.Any
7715
7719
  id_data: typing.Any
7716
7720
 
7717
- def as_keywords(self, ignore=()):
7721
+ def as_keywords(self, *, ignore=()):
7718
7722
  """Return a copy of the properties as a dictionary
7719
7723
 
7720
7724
  :param ignore:
@@ -7936,7 +7940,7 @@ class WM_OT_properties_remove:
7936
7940
  bl_rna: typing.Any
7937
7941
  id_data: typing.Any
7938
7942
 
7939
- def as_keywords(self, ignore=()):
7943
+ def as_keywords(self, *, ignore=()):
7940
7944
  """Return a copy of the properties as a dictionary
7941
7945
 
7942
7946
  :param ignore:
@@ -8142,7 +8146,7 @@ class WM_OT_sysinfo:
8142
8146
  bl_rna: typing.Any
8143
8147
  id_data: typing.Any
8144
8148
 
8145
- def as_keywords(self, ignore=()):
8149
+ def as_keywords(self, *, ignore=()):
8146
8150
  """Return a copy of the properties as a dictionary
8147
8151
 
8148
8152
  :param ignore:
@@ -8356,7 +8360,7 @@ class WM_OT_tool_set_by_id:
8356
8360
  bl_rna: typing.Any
8357
8361
  id_data: typing.Any
8358
8362
 
8359
- def as_keywords(self, ignore=()):
8363
+ def as_keywords(self, *, ignore=()):
8360
8364
  """Return a copy of the properties as a dictionary
8361
8365
 
8362
8366
  :param ignore:
@@ -8562,7 +8566,7 @@ class WM_OT_tool_set_by_index:
8562
8566
  bl_rna: typing.Any
8563
8567
  id_data: typing.Any
8564
8568
 
8565
- def as_keywords(self, ignore=()):
8569
+ def as_keywords(self, *, ignore=()):
8566
8570
  """Return a copy of the properties as a dictionary
8567
8571
 
8568
8572
  :param ignore:
@@ -8766,7 +8770,7 @@ class WM_OT_toolbar:
8766
8770
  bl_rna: typing.Any
8767
8771
  id_data: typing.Any
8768
8772
 
8769
- def as_keywords(self, ignore=()):
8773
+ def as_keywords(self, *, ignore=()):
8770
8774
  """Return a copy of the properties as a dictionary
8771
8775
 
8772
8776
  :param ignore:
@@ -8905,7 +8909,7 @@ class WM_OT_toolbar:
8905
8909
  ...
8906
8910
 
8907
8911
  def keymap_from_toolbar(
8908
- self, context, space_type, use_fallback_keys=True, use_reset=True
8912
+ self, context, space_type, *, use_fallback_keys=True, use_reset=True
8909
8913
  ):
8910
8914
  """
8911
8915
 
@@ -8989,7 +8993,7 @@ class WM_OT_toolbar_fallback_pie:
8989
8993
  bl_rna: typing.Any
8990
8994
  id_data: typing.Any
8991
8995
 
8992
- def as_keywords(self, ignore=()):
8996
+ def as_keywords(self, *, ignore=()):
8993
8997
  """Return a copy of the properties as a dictionary
8994
8998
 
8995
8999
  :param ignore:
@@ -9203,7 +9207,7 @@ class WM_OT_toolbar_prompt:
9203
9207
  bl_rna: typing.Any
9204
9208
  id_data: typing.Any
9205
9209
 
9206
- def as_keywords(self, ignore=()):
9210
+ def as_keywords(self, *, ignore=()):
9207
9211
  """Return a copy of the properties as a dictionary
9208
9212
 
9209
9213
  :param ignore:
@@ -9419,7 +9423,7 @@ class WM_OT_url_open:
9419
9423
  bl_rna: typing.Any
9420
9424
  id_data: typing.Any
9421
9425
 
9422
- def as_keywords(self, ignore=()):
9426
+ def as_keywords(self, *, ignore=()):
9423
9427
  """Return a copy of the properties as a dictionary
9424
9428
 
9425
9429
  :param ignore:
@@ -9627,7 +9631,7 @@ class WM_OT_url_open_preset:
9627
9631
  id_data: typing.Any
9628
9632
  preset_items: typing.Any
9629
9633
 
9630
- def as_keywords(self, ignore=()):
9634
+ def as_keywords(self, *, ignore=()):
9631
9635
  """Return a copy of the properties as a dictionary
9632
9636
 
9633
9637
  :param ignore:
@@ -9828,7 +9832,7 @@ class WM_OT_url_open_preset:
9828
9832
  def context_path_decompose(data_path): ...
9829
9833
  def context_path_to_rna_property(context, data_path): ...
9830
9834
  def context_path_validate(context, data_path): ...
9831
- def description_from_data_path(base, data_path, prefix, value=Ellipsis): ...
9835
+ def description_from_data_path(base, data_path, *, prefix, value=Ellipsis): ...
9832
9836
  def execute_context_assign(context): ...
9833
9837
  def operator_path_is_undo(context, data_path): ...
9834
9838
  def operator_path_undo_return(context, data_path): ...
@@ -15,7 +15,7 @@ class WORLD_OT_convert_volume_to_mesh:
15
15
  bl_rna: typing.Any
16
16
  id_data: typing.Any
17
17
 
18
- def as_keywords(self, ignore=()):
18
+ def as_keywords(self, *, ignore=()):
19
19
  """Return a copy of the properties as a dictionary
20
20
 
21
21
  :param ignore:
bl_ui/__init__.pyi CHANGED
@@ -277,6 +277,7 @@ class UI_MT_button_context_menu(bpy_types._GenericUI):
277
277
  self,
278
278
  searchpaths: list[str],
279
279
  operator: str,
280
+ *,
280
281
  props_default: dict = None,
281
282
  prop_filepath: str | None = "filepath",
282
283
  filter_ext: collections.abc.Callable | None = None,
@@ -553,6 +554,7 @@ class UI_MT_list_item_context_menu(bpy_types._GenericUI):
553
554
  self,
554
555
  searchpaths: list[str],
555
556
  operator: str,
557
+ *,
556
558
  props_default: dict = None,
557
559
  prop_filepath: str | None = "filepath",
558
560
  filter_ext: collections.abc.Callable | None = None,
bl_ui/anim/__init__.pyi CHANGED
@@ -193,6 +193,7 @@ class ANIM_MT_keyframe_insert_pie(bpy_types._GenericUI):
193
193
  self,
194
194
  searchpaths: list[str],
195
195
  operator: str,
196
+ *,
196
197
  props_default: dict = None,
197
198
  prop_filepath: str | None = "filepath",
198
199
  filter_ext: collections.abc.Callable | None = None,
@@ -44,7 +44,7 @@ class UILIST_OT_entry_add(GenericUIListOperator):
44
44
  bl_rna: typing.Any
45
45
  id_data: typing.Any
46
46
 
47
- def as_keywords(self, ignore=()):
47
+ def as_keywords(self, *, ignore=()):
48
48
  """Return a copy of the properties as a dictionary
49
49
 
50
50
  :param ignore:
@@ -273,7 +273,7 @@ class UILIST_OT_entry_move(GenericUIListOperator):
273
273
  bl_rna: typing.Any
274
274
  id_data: typing.Any
275
275
 
276
- def as_keywords(self, ignore=()):
276
+ def as_keywords(self, *, ignore=()):
277
277
  """Return a copy of the properties as a dictionary
278
278
 
279
279
  :param ignore:
@@ -502,7 +502,7 @@ class UILIST_OT_entry_remove(GenericUIListOperator):
502
502
  bl_rna: typing.Any
503
503
  id_data: typing.Any
504
504
 
505
- def as_keywords(self, ignore=()):
505
+ def as_keywords(self, *, ignore=()):
506
506
  """Return a copy of the properties as a dictionary
507
507
 
508
508
  :param ignore:
@@ -726,13 +726,14 @@ def draw_ui_list(
726
726
  layout: bpy.types.UILayout,
727
727
  context: bpy.types.Context,
728
728
  class_name: str = "UI_UL_list",
729
+ *,
729
730
  unique_id: str = None,
730
731
  list_path: str = None,
731
732
  active_index_path: str = None,
732
733
  insertion_operators: bool = True,
733
734
  move_operators: str = True,
734
735
  menu_class_name: str = "",
735
- kwargs=None,
736
+ **kwargs,
736
737
  ):
737
738
  """Draw a UIList with Add/Remove/Move buttons and a menu.Additional keyword arguments are passed to `UIList.template_list`.
738
739
 
@@ -194,6 +194,7 @@ class NODE_MT_category_layout(bpy_types._GenericUI):
194
194
  self,
195
195
  searchpaths: list[str],
196
196
  operator: str,
197
+ *,
197
198
  props_default: dict = None,
198
199
  prop_filepath: str | None = "filepath",
199
200
  filter_ext: collections.abc.Callable | None = None,
@@ -278,7 +279,7 @@ class NODE_MT_category_layout(bpy_types._GenericUI):
278
279
  """
279
280
  ...
280
281
 
281
- def add_node_type(layout, node_type, label=None, poll=None, search_weight=0.0):
282
+ def add_node_type(layout, node_type, *, label=None, poll=None, search_weight=0.0):
282
283
  """Add a node type to a menu."""
283
284
 
284
285
  ...
@@ -194,6 +194,7 @@ class NODE_MT_category_compositor_LAYOUT(bpy_types._GenericUI):
194
194
  self,
195
195
  searchpaths: list[str],
196
196
  operator: str,
197
+ *,
197
198
  props_default: dict = None,
198
199
  prop_filepath: str | None = "filepath",
199
200
  filter_ext: collections.abc.Callable | None = None,
@@ -465,6 +466,7 @@ class NODE_MT_category_compositor_color(bpy_types._GenericUI):
465
466
  self,
466
467
  searchpaths: list[str],
467
468
  operator: str,
469
+ *,
468
470
  props_default: dict = None,
469
471
  prop_filepath: str | None = "filepath",
470
472
  filter_ext: collections.abc.Callable | None = None,
@@ -736,6 +738,7 @@ class NODE_MT_category_compositor_color_adjust(bpy_types._GenericUI):
736
738
  self,
737
739
  searchpaths: list[str],
738
740
  operator: str,
741
+ *,
739
742
  props_default: dict = None,
740
743
  prop_filepath: str | None = "filepath",
741
744
  filter_ext: collections.abc.Callable | None = None,
@@ -1007,6 +1010,7 @@ class NODE_MT_category_compositor_color_mix(bpy_types._GenericUI):
1007
1010
  self,
1008
1011
  searchpaths: list[str],
1009
1012
  operator: str,
1013
+ *,
1010
1014
  props_default: dict = None,
1011
1015
  prop_filepath: str | None = "filepath",
1012
1016
  filter_ext: collections.abc.Callable | None = None,
@@ -1278,6 +1282,7 @@ class NODE_MT_category_compositor_filter(bpy_types._GenericUI):
1278
1282
  self,
1279
1283
  searchpaths: list[str],
1280
1284
  operator: str,
1285
+ *,
1281
1286
  props_default: dict = None,
1282
1287
  prop_filepath: str | None = "filepath",
1283
1288
  filter_ext: collections.abc.Callable | None = None,
@@ -1549,6 +1554,7 @@ class NODE_MT_category_compositor_filter_blur(bpy_types._GenericUI):
1549
1554
  self,
1550
1555
  searchpaths: list[str],
1551
1556
  operator: str,
1557
+ *,
1552
1558
  props_default: dict = None,
1553
1559
  prop_filepath: str | None = "filepath",
1554
1560
  filter_ext: collections.abc.Callable | None = None,
@@ -1820,6 +1826,7 @@ class NODE_MT_category_compositor_group(bpy_types._GenericUI):
1820
1826
  self,
1821
1827
  searchpaths: list[str],
1822
1828
  operator: str,
1829
+ *,
1823
1830
  props_default: dict = None,
1824
1831
  prop_filepath: str | None = "filepath",
1825
1832
  filter_ext: collections.abc.Callable | None = None,
@@ -2091,6 +2098,7 @@ class NODE_MT_category_compositor_input(bpy_types._GenericUI):
2091
2098
  self,
2092
2099
  searchpaths: list[str],
2093
2100
  operator: str,
2101
+ *,
2094
2102
  props_default: dict = None,
2095
2103
  prop_filepath: str | None = "filepath",
2096
2104
  filter_ext: collections.abc.Callable | None = None,
@@ -2362,6 +2370,7 @@ class NODE_MT_category_compositor_input_constant(bpy_types._GenericUI):
2362
2370
  self,
2363
2371
  searchpaths: list[str],
2364
2372
  operator: str,
2373
+ *,
2365
2374
  props_default: dict = None,
2366
2375
  prop_filepath: str | None = "filepath",
2367
2376
  filter_ext: collections.abc.Callable | None = None,
@@ -2633,6 +2642,7 @@ class NODE_MT_category_compositor_input_scene(bpy_types._GenericUI):
2633
2642
  self,
2634
2643
  searchpaths: list[str],
2635
2644
  operator: str,
2645
+ *,
2636
2646
  props_default: dict = None,
2637
2647
  prop_filepath: str | None = "filepath",
2638
2648
  filter_ext: collections.abc.Callable | None = None,
@@ -2904,6 +2914,7 @@ class NODE_MT_category_compositor_keying(bpy_types._GenericUI):
2904
2914
  self,
2905
2915
  searchpaths: list[str],
2906
2916
  operator: str,
2917
+ *,
2907
2918
  props_default: dict = None,
2908
2919
  prop_filepath: str | None = "filepath",
2909
2920
  filter_ext: collections.abc.Callable | None = None,
@@ -3175,6 +3186,7 @@ class NODE_MT_category_compositor_mask(bpy_types._GenericUI):
3175
3186
  self,
3176
3187
  searchpaths: list[str],
3177
3188
  operator: str,
3189
+ *,
3178
3190
  props_default: dict = None,
3179
3191
  prop_filepath: str | None = "filepath",
3180
3192
  filter_ext: collections.abc.Callable | None = None,
@@ -3446,6 +3458,7 @@ class NODE_MT_category_compositor_output(bpy_types._GenericUI):
3446
3458
  self,
3447
3459
  searchpaths: list[str],
3448
3460
  operator: str,
3461
+ *,
3449
3462
  props_default: dict = None,
3450
3463
  prop_filepath: str | None = "filepath",
3451
3464
  filter_ext: collections.abc.Callable | None = None,
@@ -3718,6 +3731,7 @@ class NODE_MT_category_compositor_tracking(bpy_types._GenericUI):
3718
3731
  self,
3719
3732
  searchpaths: list[str],
3720
3733
  operator: str,
3734
+ *,
3721
3735
  props_default: dict = None,
3722
3736
  prop_filepath: str | None = "filepath",
3723
3737
  filter_ext: collections.abc.Callable | None = None,
@@ -3989,6 +4003,7 @@ class NODE_MT_category_compositor_transform(bpy_types._GenericUI):
3989
4003
  self,
3990
4004
  searchpaths: list[str],
3991
4005
  operator: str,
4006
+ *,
3992
4007
  props_default: dict = None,
3993
4008
  prop_filepath: str | None = "filepath",
3994
4009
  filter_ext: collections.abc.Callable | None = None,
@@ -4260,6 +4275,7 @@ class NODE_MT_category_compositor_utilities(bpy_types._GenericUI):
4260
4275
  self,
4261
4276
  searchpaths: list[str],
4262
4277
  operator: str,
4278
+ *,
4263
4279
  props_default: dict = None,
4264
4280
  prop_filepath: str | None = "filepath",
4265
4281
  filter_ext: collections.abc.Callable | None = None,
@@ -4531,6 +4547,7 @@ class NODE_MT_category_compositor_vector(bpy_types._GenericUI):
4531
4547
  self,
4532
4548
  searchpaths: list[str],
4533
4549
  operator: str,
4550
+ *,
4534
4551
  props_default: dict = None,
4535
4552
  prop_filepath: str | None = "filepath",
4536
4553
  filter_ext: collections.abc.Callable | None = None,
@@ -4802,6 +4819,7 @@ class NODE_MT_compositor_node_add_all(bpy_types._GenericUI):
4802
4819
  self,
4803
4820
  searchpaths: list[str],
4804
4821
  operator: str,
4822
+ *,
4805
4823
  props_default: dict = None,
4806
4824
  prop_filepath: str | None = "filepath",
4807
4825
  filter_ext: collections.abc.Callable | None = None,