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
@@ -1,6 +1,7 @@
1
1
  import typing
2
2
  import collections.abc
3
3
  import typing_extensions
4
+ from . import addons
4
5
  from . import extensions
5
6
  from . import freedesktop
6
7
 
@@ -0,0 +1,7 @@
1
+ import typing
2
+ import collections.abc
3
+ import typing_extensions
4
+ from . import cli
5
+
6
+ GenericType1 = typing.TypeVar("GenericType1")
7
+ GenericType2 = typing.TypeVar("GenericType2")
@@ -0,0 +1,8 @@
1
+ import typing
2
+ import collections.abc
3
+ import typing_extensions
4
+
5
+ GenericType1 = typing.TypeVar("GenericType1")
6
+ GenericType2 = typing.TypeVar("GenericType2")
7
+
8
+ def set_from_cli(addons_as_string): ...
@@ -5,7 +5,7 @@ import typing_extensions
5
5
  GenericType1 = typing.TypeVar("GenericType1")
6
6
  GenericType2 = typing.TypeVar("GenericType2")
7
7
 
8
- def apply_action(local_dir, local_dir_site_packages, wheel_list): ...
8
+ def apply_action(*, local_dir, local_dir_site_packages, wheel_list): ...
9
9
  def wheel_list_deduplicate_as_skip_set(wheel_list):
10
10
  """Return all wheel paths to skip."""
11
11
 
@@ -6,7 +6,7 @@ GenericType1 = typing.TypeVar("GenericType1")
6
6
  GenericType2 = typing.TypeVar("GenericType2")
7
7
 
8
8
  def argparse_create(): ...
9
- def call_handle_checked(fn, do_register, all_users): ...
9
+ def call_handle_checked(fn, *, do_register, all_users): ...
10
10
  def filepath_ensure_removed(path): ...
11
11
  def filepath_repr(filepath): ...
12
12
  def handle_bin(do_register, all_users): ...
addon_utils/__init__.pyi CHANGED
@@ -25,7 +25,7 @@ def check_extension(module_name):
25
25
  ...
26
26
 
27
27
  def disable(
28
- module_name: str, default_set: bool = False, handle_error: typing.Any = None
28
+ module_name: str, *, default_set: bool = False, handle_error: typing.Any = None
29
29
  ):
30
30
  """Disables an addon by name.
31
31
 
@@ -42,6 +42,7 @@ def disable(
42
42
  def disable_all(): ...
43
43
  def enable(
44
44
  module_name: str,
45
+ *,
45
46
  default_set: bool = False,
46
47
  persistent: bool = False,
47
48
  handle_error: typing.Any = None,
@@ -62,11 +63,11 @@ def enable(
62
63
  ...
63
64
 
64
65
  def extensions_refresh(ensure_wheels=True, addon_modules_pending=None): ...
65
- def module_bl_info(mod, info_basis=None): ...
66
- def modules(module_cache={}, refresh=True): ...
67
- def modules_refresh(module_cache={}): ...
66
+ def module_bl_info(mod, *, info_basis=None): ...
67
+ def modules(*, module_cache={}, refresh=True): ...
68
+ def modules_refresh(*, module_cache={}): ...
68
69
  def paths(): ...
69
- def reset_all(reload_scripts=False):
70
+ def reset_all(*, reload_scripts=False):
70
71
  """Sets the addon state based on the user preferences."""
71
72
 
72
73
  ...
@@ -6,8 +6,9 @@ from . import helpers
6
6
  GenericType1 = typing.TypeVar("GenericType1")
7
7
  GenericType2 = typing.TypeVar("GenericType2")
8
8
 
9
- def class_filter(cls_parent, kw): ...
9
+ def class_filter(cls_parent, **kw): ...
10
10
  def ui_draw_filter_register(
11
+ *,
11
12
  ui_ignore_classes=None,
12
13
  ui_ignore_operator=None,
13
14
  ui_ignore_property=None,
@@ -5,10 +5,10 @@ import typing_extensions
5
5
  GenericType1 = typing.TypeVar("GenericType1")
6
6
  GenericType2 = typing.TypeVar("GenericType2")
7
7
 
8
- def activate(template_id=None, reload_scripts=False): ...
9
- def import_from_id(template_id, ignore_not_found=False): ...
10
- def import_from_path(path, ignore_not_found=False): ...
11
- def reset(reload_scripts=False):
8
+ def activate(*, template_id=None, reload_scripts=False): ...
9
+ def import_from_id(template_id, *, ignore_not_found=False): ...
10
+ def import_from_path(path, *, ignore_not_found=False): ...
11
+ def reset(*, reload_scripts=False):
12
12
  """Sets default state."""
13
13
 
14
14
  ...
@@ -21,7 +21,7 @@ def complete(line: str, cursor: int, namespace: dict) -> str:
21
21
  ...
22
22
 
23
23
  def get_argspec(
24
- func, strip_self: bool = True, doc: str | None = None, source: str | None = None
24
+ func, *, strip_self: bool = True, doc: str | None = None, source: str | None = None
25
25
  ) -> str:
26
26
  """Get argument specifications.
27
27
 
@@ -5,7 +5,7 @@ import typing_extensions
5
5
  GenericType1 = typing.TypeVar("GenericType1")
6
6
  GenericType2 = typing.TypeVar("GenericType2")
7
7
 
8
- def complete(word: str, namespace: dict, private: bool = True) -> list[str]:
8
+ def complete(word: str, namespace: dict, *, private: bool = True) -> list[str]:
9
9
  """Complete word within a namespace with the standard rlcompleter
10
10
  module. Also supports index or key access [].
11
11
 
@@ -22,7 +22,7 @@ def complete(word: str, namespace: dict, private: bool = True) -> list[str]:
22
22
  ...
23
23
 
24
24
  def complete_indices(
25
- word: str, namespace: dict, obj=None, base: str = None
25
+ word: str, namespace: dict, *, obj=None, base: str = None
26
26
  ) -> list[str]:
27
27
  """Complete a list or dictionary with its indices:
28
28
 
@@ -22,7 +22,9 @@ def complete(line: str, cursor: int, namespace: dict, private: bool) -> list | s
22
22
 
23
23
  ...
24
24
 
25
- def expand(line: str, cursor: int, namespace: dict, private: bool = True) -> int | str:
25
+ def expand(
26
+ line: str, cursor: int, namespace: dict, *, private: bool = True
27
+ ) -> int | str:
26
28
  """This method is invoked when the user asks auto-completion,
27
29
  e.g. when Ctrl+Space is clicked.
28
30
 
@@ -6,8 +6,10 @@ GenericType1 = typing.TypeVar("GenericType1")
6
6
  GenericType2 = typing.TypeVar("GenericType2")
7
7
 
8
8
  def indent(levels): ...
9
- def keyconfig_export_as_data(wm, kc, filepath, all_keymaps=False): ...
10
- def keyconfig_import_from_data(name, keyconfig_data, keyconfig_version=(0, 0, 0)): ...
9
+ def keyconfig_export_as_data(wm, kc, filepath, *, all_keymaps=False): ...
10
+ def keyconfig_import_from_data(
11
+ name, keyconfig_data, *, keyconfig_version=(0, 0, 0)
12
+ ): ...
11
13
  def keyconfig_init_from_data(kc, keyconfig_data): ...
12
14
  def keyconfig_merge(kc1, kc2):
13
15
  """note: kc1 takes priority over kc2"""
@@ -5,7 +5,7 @@ import typing_extensions
5
5
  GenericType1 = typing.TypeVar("GenericType1")
6
6
  GenericType2 = typing.TypeVar("GenericType2")
7
7
 
8
- def generate(context, space_type, use_fallback_keys=True, use_reset=True):
8
+ def generate(context, space_type, *, use_fallback_keys=True, use_reset=True):
9
9
  """Keymap for popup toolbar, currently generated each time."""
10
10
 
11
11
  ...
@@ -5,7 +5,7 @@ import typing_extensions
5
5
  GenericType1 = typing.TypeVar("GenericType1")
6
6
  GenericType2 = typing.TypeVar("GenericType2")
7
7
 
8
- def keyconfig_data_oskey_from_ctrl(keyconfig_data_src, filter_fn=None): ...
8
+ def keyconfig_data_oskey_from_ctrl(keyconfig_data_src, *, filter_fn=None): ...
9
9
  def keyconfig_data_oskey_from_ctrl_for_macos(keyconfig_data_src):
10
10
  """Use for apple since Cmd is typically used in-place of Ctrl."""
11
11
 
bl_operators/__init__.pyi CHANGED
@@ -5,6 +5,7 @@ from . import add_mesh_torus
5
5
  from . import anim
6
6
  from . import assets
7
7
  from . import bmesh
8
+ from . import bone_selection_sets
8
9
  from . import clip
9
10
  from . import connect_to_output
10
11
  from . import console
@@ -23,7 +23,7 @@ class AddTorus(bpy_extras.object_utils.AddObjectHelper):
23
23
  """
24
24
  ...
25
25
 
26
- def as_keywords(self, ignore=()):
26
+ def as_keywords(self, *, ignore=()):
27
27
  """Return a copy of the properties as a dictionary
28
28
 
29
29
  :param ignore:
@@ -14,7 +14,7 @@ class ANIM_OT_keying_set_export:
14
14
  bl_rna: typing.Any
15
15
  id_data: typing.Any
16
16
 
17
- def as_keywords(self, ignore=()):
17
+ def as_keywords(self, *, ignore=()):
18
18
  """Return a copy of the properties as a dictionary
19
19
 
20
20
  :param ignore:
@@ -229,7 +229,7 @@ class ARMATURE_OT_collection_remove_unused:
229
229
  bl_rna: typing.Any
230
230
  id_data: typing.Any
231
231
 
232
- def as_keywords(self, ignore=()):
232
+ def as_keywords(self, *, ignore=()):
233
233
  """Return a copy of the properties as a dictionary
234
234
 
235
235
  :param ignore:
@@ -467,7 +467,7 @@ class ARMATURE_OT_collection_show_all:
467
467
  bl_rna: typing.Any
468
468
  id_data: typing.Any
469
469
 
470
- def as_keywords(self, ignore=()):
470
+ def as_keywords(self, *, ignore=()):
471
471
  """Return a copy of the properties as a dictionary
472
472
 
473
473
  :param ignore:
@@ -681,7 +681,7 @@ class ARMATURE_OT_collection_unsolo_all:
681
681
  bl_rna: typing.Any
682
682
  id_data: typing.Any
683
683
 
684
- def as_keywords(self, ignore=()):
684
+ def as_keywords(self, *, ignore=()):
685
685
  """Return a copy of the properties as a dictionary
686
686
 
687
687
  :param ignore:
@@ -895,7 +895,7 @@ class ARMATURE_OT_copy_bone_color_to_selected:
895
895
  bl_rna: typing.Any
896
896
  id_data: typing.Any
897
897
 
898
- def as_keywords(self, ignore=()):
898
+ def as_keywords(self, *, ignore=()):
899
899
  """Return a copy of the properties as a dictionary
900
900
 
901
901
  :param ignore:
@@ -1109,7 +1109,7 @@ class ClearUselessActions:
1109
1109
  bl_rna: typing.Any
1110
1110
  id_data: typing.Any
1111
1111
 
1112
- def as_keywords(self, ignore=()):
1112
+ def as_keywords(self, *, ignore=()):
1113
1113
  """Return a copy of the properties as a dictionary
1114
1114
 
1115
1115
  :param ignore:
@@ -1323,7 +1323,7 @@ class NLA_OT_bake:
1323
1323
  bl_rna: typing.Any
1324
1324
  id_data: typing.Any
1325
1325
 
1326
- def as_keywords(self, ignore=()):
1326
+ def as_keywords(self, *, ignore=()):
1327
1327
  """Return a copy of the properties as a dictionary
1328
1328
 
1329
1329
  :param ignore:
@@ -1538,7 +1538,7 @@ class UpdateAnimatedTransformConstraint:
1538
1538
  bl_rna: typing.Any
1539
1539
  id_data: typing.Any
1540
1540
 
1541
- def as_keywords(self, ignore=()):
1541
+ def as_keywords(self, *, ignore=()):
1542
1542
  """Return a copy of the properties as a dictionary
1543
1543
 
1544
1544
  :param ignore:
@@ -15,7 +15,7 @@ class ASSET_OT_open_containing_blend_file:
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:
@@ -251,7 +251,7 @@ class ASSET_OT_tag_add(AssetBrowserMetadataOperator):
251
251
  bl_rna: typing.Any
252
252
  id_data: typing.Any
253
253
 
254
- def as_keywords(self, ignore=()):
254
+ def as_keywords(self, *, ignore=()):
255
255
  """Return a copy of the properties as a dictionary
256
256
 
257
257
  :param ignore:
@@ -465,7 +465,7 @@ class ASSET_OT_tag_remove(AssetBrowserMetadataOperator):
465
465
  bl_rna: typing.Any
466
466
  id_data: typing.Any
467
467
 
468
- def as_keywords(self, ignore=()):
468
+ def as_keywords(self, *, ignore=()):
469
469
  """Return a copy of the properties as a dictionary
470
470
 
471
471
  :param ignore: