fake-bpy-module 20240903__py3-none-any.whl → 20240905__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.

@@ -5,6 +5,7 @@ from . import addons as addons
5
5
  from . import extensions as extensions
6
6
  from . import freedesktop as freedesktop
7
7
  from . import grease_pencil as grease_pencil
8
+ from . import system_info as system_info
8
9
 
9
10
  GenericType1 = typing.TypeVar("GenericType1")
10
11
  GenericType2 = typing.TypeVar("GenericType2")
@@ -0,0 +1,8 @@
1
+ import typing
2
+ import collections.abc
3
+ import typing_extensions
4
+ from . import runtime as runtime
5
+ from . import startup as startup
6
+
7
+ GenericType1 = typing.TypeVar("GenericType1")
8
+ 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 prefill_bug_report_info(): ...
@@ -88,7 +88,7 @@ class ANIM_OT_slot_new_for_id(bpy.types.Operator):
88
88
 
89
89
  class ANIM_OT_slot_unassign_from_id(bpy.types.Operator):
90
90
  """Un-assign the assigned Action Slot from an ID.Note that _which_ ID should get this slot unassigned must be set in the
91
- 'animated_id' context pointer, using:
91
+ "animated_id" context pointer, using:
92
92
  """
93
93
 
94
94
  bl_description: typing.Any
bl_ui_utils/__init__.pyi CHANGED
@@ -1,7 +1,6 @@
1
1
  import typing
2
2
  import collections.abc
3
3
  import typing_extensions
4
- from . import bug_report_url as bug_report_url
5
4
  from . import layout as layout
6
5
 
7
6
  GenericType1 = typing.TypeVar("GenericType1")
bpy/ops/wm/__init__.pyi CHANGED
@@ -603,12 +603,16 @@ def clear_recent_files(
603
603
  override_context: bpy.types.Context | dict[str, typing.Any] = None,
604
604
  execution_context: int | str | None = None,
605
605
  undo: bool | None = None,
606
+ *,
607
+ remove: typing.Literal["ALL", "MISSING"] | None = "ALL",
606
608
  ):
607
609
  """Clear the recent files list
608
610
 
609
611
  :type override_context: bpy.types.Context | dict[str, typing.Any]
610
612
  :type execution_context: int | str | None
611
613
  :type undo: bool | None
614
+ :param remove: Remove
615
+ :type remove: typing.Literal['ALL','MISSING'] | None
612
616
  """
613
617
 
614
618
  ...