fake-bpy-module-latest 20260116__py3-none-any.whl → 20260117__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.
@@ -6,6 +6,7 @@ from . import addons as addons
6
6
  from . import assets as assets
7
7
  from . import disk_file_hash_service as disk_file_hash_service
8
8
  from . import extensions as extensions
9
+ from . import filesystem as filesystem
9
10
  from . import grease_pencil as grease_pencil
10
11
  from . import platform as platform
11
12
  from . import system_info as system_info
@@ -0,0 +1,5 @@
1
+ import typing
2
+ import collections.abc
3
+ import typing_extensions
4
+ import numpy.typing as npt
5
+ from . import locking as locking
@@ -0,0 +1,28 @@
1
+ import typing
2
+ import collections.abc
3
+ import typing_extensions
4
+ import numpy.typing as npt
5
+
6
+ class MutexAcquisitionError:
7
+ """Raised when mutex_lock_and_open_with_retry() cannot obtain a lock."""
8
+
9
+ args: typing.Any
10
+
11
+ def mutex_lock_and_open(file_path, mode) -> None:
12
+ """Obtain an exclusive lock on a file.Create a file on disk, and immediately lock it for exclusive use by this
13
+ process.
14
+
15
+ :return: If the file was opened & locked succesfully, a tuple (file,
16
+ unlocker) is returned. Otherwise returns None. The caller should call
17
+ unlocker(file) to unlock the mutex.
18
+ """
19
+
20
+ def mutex_lock_and_open_with_retry(
21
+ file_path, mode, *, max_tries, wait_time_sec
22
+ ) -> None:
23
+ """Obtain an exclusive lock on a file, retrying when that fails.See mutex_lock_and_open() for the lock semantics, and the first two parameters.
24
+
25
+ :param max_tries: number of times the code attempts to acquire the lock.
26
+ :return: A tuple (file, unlocker) is returned. The caller should call
27
+ unlocker(file) to unlock the mutex.
28
+ """
@@ -564,6 +564,13 @@ class NODE_OT_swap_zone(NodeSwapOperator, ZoneOperator, _bpy_types.Operator):
564
564
  :param context:
565
565
  """
566
566
 
567
+ @staticmethod
568
+ def get_child_items(node) -> None:
569
+ """
570
+
571
+ :param node:
572
+ """
573
+
567
574
  @staticmethod
568
575
  def get_zone_pair(tree, node) -> None:
569
576
  """
@@ -572,6 +579,13 @@ class NODE_OT_swap_zone(NodeSwapOperator, ZoneOperator, _bpy_types.Operator):
572
579
  :param node:
573
580
  """
574
581
 
582
+ def transfer_zone_sockets(self, old_node, new_node) -> None:
583
+ """
584
+
585
+ :param old_node:
586
+ :param new_node:
587
+ """
588
+
575
589
  class NODE_OT_tree_path_parent(_bpy_types.Operator):
576
590
  """Go to parent node tree"""
577
591
 
@@ -114,7 +114,7 @@ class UILIST_OT_entry_remove(GenericUIListOperator, _bpy_types.Operator):
114
114
 
115
115
  def draw_ui_list(
116
116
  layout: bpy.types.UILayout,
117
- context: _bpy_types.Context,
117
+ context: bpy.types.Context,
118
118
  class_name: str = "UI_UL_list",
119
119
  *,
120
120
  unique_id: str,
bpy/app/__init__.pyi CHANGED
@@ -122,6 +122,10 @@ build_type: bytes
122
122
  """ The type of build (Release, Debug)
123
123
  """
124
124
 
125
+ cachedir: None | str
126
+ """ String, the cache directory used by blender (read-only).If the parent of the cache folder (i.e. the part of the path that is not Blender-specific) does not exist, returns None.
127
+ """
128
+
125
129
  debug: bool
126
130
  """ Boolean, for debug info (started with --debug / --debug-* matching this attribute name).
127
131
  """
bpy/types/__init__.pyi CHANGED
@@ -33899,6 +33899,8 @@ It demonstrates:
33899
33899
  * NodeEvaluateClosure.output_template
33900
33900
  * NodeFrame.input_template
33901
33901
  * NodeFrame.output_template
33902
+ * NodeGetBundleItem.input_template
33903
+ * NodeGetBundleItem.output_template
33902
33904
  * NodeGroup.input_template
33903
33905
  * NodeGroup.output_template
33904
33906
  * NodeGroupInput.input_template
@@ -33911,6 +33913,8 @@ It demonstrates:
33911
33913
  * NodeReroute.output_template
33912
33914
  * NodeSeparateBundle.input_template
33913
33915
  * NodeSeparateBundle.output_template
33916
+ * NodeStoreBundleItem.input_template
33917
+ * NodeStoreBundleItem.output_template
33914
33918
  * ShaderNodeAddShader.input_template
33915
33919
  * ShaderNodeAddShader.output_template
33916
33920
  * ShaderNodeAmbientOcclusion.input_template
@@ -39398,6 +39402,101 @@ Operator.draw method for layout and display.
39398
39402
  :columns: 2
39399
39403
 
39400
39404
 
39405
+ --------------------
39406
+
39407
+ * bpy_struct.id_data
39408
+ * Node.type
39409
+ * Node.location
39410
+ * Node.location_absolute
39411
+ * Node.width
39412
+ * Node.height
39413
+ * Node.dimensions
39414
+ * Node.name
39415
+ * Node.label
39416
+ * Node.inputs
39417
+ * Node.outputs
39418
+ * Node.internal_links
39419
+ * Node.parent
39420
+ * Node.warning_propagation
39421
+ * Node.use_custom_color
39422
+ * Node.color
39423
+ * Node.color_tag
39424
+ * Node.select
39425
+ * Node.show_options
39426
+ * Node.show_preview
39427
+ * Node.hide
39428
+ * Node.mute
39429
+ * Node.show_texture
39430
+ * Node.bl_idname
39431
+ * Node.bl_label
39432
+ * Node.bl_description
39433
+ * Node.bl_icon
39434
+ * Node.bl_static_type
39435
+ * Node.bl_width_default
39436
+ * Node.bl_width_min
39437
+ * Node.bl_width_max
39438
+ * Node.bl_height_default
39439
+ * Node.bl_height_min
39440
+ * Node.bl_height_max
39441
+
39442
+ :columns: 2
39443
+
39444
+
39445
+ --------------------
39446
+
39447
+ * bpy_struct.as_pointer
39448
+ * bpy_struct.driver_add
39449
+ * bpy_struct.driver_remove
39450
+ * bpy_struct.get
39451
+ * bpy_struct.id_properties_clear
39452
+ * bpy_struct.id_properties_ensure
39453
+ * bpy_struct.id_properties_ui
39454
+ * bpy_struct.is_property_hidden
39455
+ * bpy_struct.is_property_overridable_library
39456
+ * bpy_struct.is_property_readonly
39457
+ * bpy_struct.is_property_set
39458
+ * bpy_struct.items
39459
+ * bpy_struct.keyframe_delete
39460
+ * bpy_struct.keyframe_insert
39461
+ * bpy_struct.keys
39462
+ * bpy_struct.path_from_id
39463
+ * bpy_struct.path_from_module
39464
+ * bpy_struct.path_resolve
39465
+ * bpy_struct.pop
39466
+ * bpy_struct.property_overridable_library_set
39467
+ * bpy_struct.property_unset
39468
+ * bpy_struct.rna_ancestors
39469
+ * bpy_struct.type_recast
39470
+ * bpy_struct.values
39471
+ * Node.bl_system_properties_get
39472
+ * Node.socket_value_update
39473
+ * Node.is_registered_node_type
39474
+ * Node.poll
39475
+ * Node.poll_instance
39476
+ * Node.update
39477
+ * Node.insert_link
39478
+ * Node.init
39479
+ * Node.copy
39480
+ * Node.free
39481
+ * Node.draw_buttons
39482
+ * Node.draw_buttons_ext
39483
+ * Node.draw_label
39484
+ * Node.debug_zone_body_lazy_function_graph
39485
+ * Node.debug_zone_lazy_function_graph
39486
+ * Node.poll
39487
+ * Node.bl_rna_get_subclass
39488
+ * Node.bl_rna_get_subclass_py
39489
+ * NodeInternal.poll
39490
+ * NodeInternal.poll_instance
39491
+ * NodeInternal.update
39492
+ * NodeInternal.draw_buttons
39493
+ * NodeInternal.draw_buttons_ext
39494
+ * NodeInternal.bl_rna_get_subclass
39495
+ * NodeInternal.bl_rna_get_subclass_py
39496
+
39497
+ :columns: 2
39498
+
39499
+
39401
39500
  --------------------
39402
39501
 
39403
39502
  * bpy_struct.id_data
@@ -94177,6 +94276,101 @@ at its creation, all editing in the original image's buffer is 'lost' in its cop
94177
94276
  :columns: 2
94178
94277
 
94179
94278
 
94279
+ --------------------
94280
+
94281
+ * bpy_struct.id_data
94282
+ * Node.type
94283
+ * Node.location
94284
+ * Node.location_absolute
94285
+ * Node.width
94286
+ * Node.height
94287
+ * Node.dimensions
94288
+ * Node.name
94289
+ * Node.label
94290
+ * Node.inputs
94291
+ * Node.outputs
94292
+ * Node.internal_links
94293
+ * Node.parent
94294
+ * Node.warning_propagation
94295
+ * Node.use_custom_color
94296
+ * Node.color
94297
+ * Node.color_tag
94298
+ * Node.select
94299
+ * Node.show_options
94300
+ * Node.show_preview
94301
+ * Node.hide
94302
+ * Node.mute
94303
+ * Node.show_texture
94304
+ * Node.bl_idname
94305
+ * Node.bl_label
94306
+ * Node.bl_description
94307
+ * Node.bl_icon
94308
+ * Node.bl_static_type
94309
+ * Node.bl_width_default
94310
+ * Node.bl_width_min
94311
+ * Node.bl_width_max
94312
+ * Node.bl_height_default
94313
+ * Node.bl_height_min
94314
+ * Node.bl_height_max
94315
+
94316
+ :columns: 2
94317
+
94318
+
94319
+ --------------------
94320
+
94321
+ * bpy_struct.as_pointer
94322
+ * bpy_struct.driver_add
94323
+ * bpy_struct.driver_remove
94324
+ * bpy_struct.get
94325
+ * bpy_struct.id_properties_clear
94326
+ * bpy_struct.id_properties_ensure
94327
+ * bpy_struct.id_properties_ui
94328
+ * bpy_struct.is_property_hidden
94329
+ * bpy_struct.is_property_overridable_library
94330
+ * bpy_struct.is_property_readonly
94331
+ * bpy_struct.is_property_set
94332
+ * bpy_struct.items
94333
+ * bpy_struct.keyframe_delete
94334
+ * bpy_struct.keyframe_insert
94335
+ * bpy_struct.keys
94336
+ * bpy_struct.path_from_id
94337
+ * bpy_struct.path_from_module
94338
+ * bpy_struct.path_resolve
94339
+ * bpy_struct.pop
94340
+ * bpy_struct.property_overridable_library_set
94341
+ * bpy_struct.property_unset
94342
+ * bpy_struct.rna_ancestors
94343
+ * bpy_struct.type_recast
94344
+ * bpy_struct.values
94345
+ * Node.bl_system_properties_get
94346
+ * Node.socket_value_update
94347
+ * Node.is_registered_node_type
94348
+ * Node.poll
94349
+ * Node.poll_instance
94350
+ * Node.update
94351
+ * Node.insert_link
94352
+ * Node.init
94353
+ * Node.copy
94354
+ * Node.free
94355
+ * Node.draw_buttons
94356
+ * Node.draw_buttons_ext
94357
+ * Node.draw_label
94358
+ * Node.debug_zone_body_lazy_function_graph
94359
+ * Node.debug_zone_lazy_function_graph
94360
+ * Node.poll
94361
+ * Node.bl_rna_get_subclass
94362
+ * Node.bl_rna_get_subclass_py
94363
+ * NodeInternal.poll
94364
+ * NodeInternal.poll_instance
94365
+ * NodeInternal.update
94366
+ * NodeInternal.draw_buttons
94367
+ * NodeInternal.draw_buttons_ext
94368
+ * NodeInternal.bl_rna_get_subclass
94369
+ * NodeInternal.bl_rna_get_subclass_py
94370
+
94371
+ :columns: 2
94372
+
94373
+
94180
94374
  --------------------
94181
94375
 
94182
94376
  * bpy_struct.id_data
@@ -180775,6 +180969,66 @@ class NodeGeometryViewerItem(bpy_struct):
180775
180969
  :return: The class or default when not found.
180776
180970
  """
180777
180971
 
180972
+ class NodeGetBundleItem(NodeInternal, Node, bpy_struct):
180973
+ """Retrieve a bundle item by path."""
180974
+
180975
+ socket_type: bpy.stub_internal.rna_enums.NodeSocketDataTypeItems
180976
+ """ Value may be implicitly converted if the type does not match"""
180977
+
180978
+ structure_type: bpy.stub_internal.rna_enums.NodeSocketStructureTypeItems
180979
+ """ What kind of higher order types are expected to flow through this socket"""
180980
+
180981
+ @classmethod
180982
+ def is_registered_node_type(cls) -> bool:
180983
+ """True if a registered node type
180984
+
180985
+ :return: Result
180986
+ """
180987
+
180988
+ @classmethod
180989
+ def input_template(cls, index: int | None) -> NodeInternalSocketTemplate:
180990
+ """Input socket template
180991
+
180992
+ :param index: Index
180993
+ :return: result
180994
+ """
180995
+
180996
+ @classmethod
180997
+ def output_template(cls, index: int | None) -> NodeInternalSocketTemplate:
180998
+ """Output socket template
180999
+
181000
+ :param index: Index
181001
+ :return: result
181002
+ """
181003
+
181004
+ @classmethod
181005
+ def bl_rna_get_subclass(
181006
+ cls,
181007
+ id: str | None,
181008
+ default=None,
181009
+ /,
181010
+ ) -> Struct:
181011
+ """
181012
+
181013
+ :param id: The RNA type identifier.
181014
+ :param default:
181015
+ :return: The RNA type or default when not found.
181016
+ """
181017
+
181018
+ @classmethod
181019
+ def bl_rna_get_subclass_py(
181020
+ cls,
181021
+ id: str | None,
181022
+ default=None,
181023
+ /,
181024
+ ) -> typing.Any:
181025
+ """
181026
+
181027
+ :param id: The RNA type identifier.
181028
+ :param default:
181029
+ :return: The class or default when not found.
181030
+ """
181031
+
180778
181032
  class NodeGroup(NodeInternal, Node, bpy_struct):
180779
181033
  node_tree: NodeTree | None
180780
181034
 
@@ -183806,6 +184060,64 @@ class NodeSocketVirtual(NodeSocketStandard, NodeSocket, bpy_struct):
183806
184060
  :return: The class or default when not found.
183807
184061
  """
183808
184062
 
184063
+ class NodeStoreBundleItem(NodeInternal, Node, bpy_struct):
184064
+ """Store a bundle item by path and data type."""
184065
+
184066
+ socket_type: bpy.stub_internal.rna_enums.NodeSocketDataTypeItems
184067
+ structure_type: bpy.stub_internal.rna_enums.NodeSocketStructureTypeItems
184068
+ """ What kind of higher order types are expected to flow through this socket"""
184069
+
184070
+ @classmethod
184071
+ def is_registered_node_type(cls) -> bool:
184072
+ """True if a registered node type
184073
+
184074
+ :return: Result
184075
+ """
184076
+
184077
+ @classmethod
184078
+ def input_template(cls, index: int | None) -> NodeInternalSocketTemplate:
184079
+ """Input socket template
184080
+
184081
+ :param index: Index
184082
+ :return: result
184083
+ """
184084
+
184085
+ @classmethod
184086
+ def output_template(cls, index: int | None) -> NodeInternalSocketTemplate:
184087
+ """Output socket template
184088
+
184089
+ :param index: Index
184090
+ :return: result
184091
+ """
184092
+
184093
+ @classmethod
184094
+ def bl_rna_get_subclass(
184095
+ cls,
184096
+ id: str | None,
184097
+ default=None,
184098
+ /,
184099
+ ) -> Struct:
184100
+ """
184101
+
184102
+ :param id: The RNA type identifier.
184103
+ :param default:
184104
+ :return: The RNA type or default when not found.
184105
+ """
184106
+
184107
+ @classmethod
184108
+ def bl_rna_get_subclass_py(
184109
+ cls,
184110
+ id: str | None,
184111
+ default=None,
184112
+ /,
184113
+ ) -> typing.Any:
184114
+ """
184115
+
184116
+ :param id: The RNA type identifier.
184117
+ :param default:
184118
+ :return: The class or default when not found.
184119
+ """
184120
+
183809
184121
  class NodeTree(ID, bpy_struct):
183810
184122
  """Node tree consisting of linked nodes used for shading, textures and compositing"""
183811
184123
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: fake-bpy-module-latest
3
- Version: 20260116
3
+ Version: 20260117
4
4
  Summary: Collection of the fake Blender Python API module for the code completion.
5
5
  Author: nutti
6
6
  Author-email: nutti.metro@gmail.com
@@ -31,7 +31,7 @@ _bl_ui_utils/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
31
31
  _bl_ui_utils/layout/__init__.pyi,sha256=diIx4fYNx0-cCb582pWqI4VWUb1zl5--IG-OXvtCdd0,215
32
32
  _blendfile_header/__init__.pyi,sha256=KNh8jqVO-nkop6SCeeSsVlsXn8ZrlLQyjmeJZvqyDes,1503
33
33
  _blendfile_header/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
34
- _bpy_internal/__init__.pyi,sha256=SjFD8IMCWmCa3jTFe21NF53VSC7rIaGf30rz1UKTv-w,374
34
+ _bpy_internal/__init__.pyi,sha256=YlFme36Yqb_zoOglu7i72nlnNSSoAo6VtPAcfOyCREk,413
35
35
  _bpy_internal/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
36
36
  _bpy_internal/addons/__init__.pyi,sha256=s4opQQDWvCt1h0JSU6xojviEDXk-b4zoOUGizdrg-3A,114
37
37
  _bpy_internal/addons/cli/__init__.pyi,sha256=4bhW_Ern-FwNR2AjuKoAzFy3mRSBvkMS_rUbN2IyeJY,138
@@ -46,6 +46,8 @@ _bpy_internal/extensions/__init__.pyi,sha256=WITpwHv5YB5MhSXLQ1F6Eb07h1sdKl3jh9r
46
46
  _bpy_internal/extensions/junction_module/__init__.pyi,sha256=HLTAcbvk_Gz3ew5wkrMX6vhvJxAVhHmaAp8hJ1xe7g0,1027
47
47
  _bpy_internal/extensions/stale_file_manager/__init__.pyi,sha256=XX8gqh2o8Edkz8jo4wTBd3oIzn-91ps-qLeReMe7-NE,785
48
48
  _bpy_internal/extensions/wheel_manager/__init__.pyi,sha256=iof2eWA4COe-HySkeiyqsDRQ-rLRt0fWRKL9znHrVQg,976
49
+ _bpy_internal/filesystem/__init__.pyi,sha256=RlMx0tsZQZhs34XVezFOXTgBAdfQVo-uiBhrSBqHurA,122
50
+ _bpy_internal/filesystem/locking/__init__.pyi,sha256=YegMhtQqF3QF16E9PjAWBkj0qdGnHW9AqeIUkNIlaNc,1050
49
51
  _bpy_internal/grease_pencil/__init__.pyi,sha256=4YIHrnLvkVHJW3S7fz8xYyAakqsDCnxvaQfuZiUUvFc,120
50
52
  _bpy_internal/grease_pencil/stroke/__init__.pyi,sha256=WZyvmOADIF0IC_aQHaQUnxSJ_nfF75phpIuLwxwWRhM,2192
51
53
  _bpy_internal/platform/__init__.pyi,sha256=0AcS2goUqkNAe5SwRtQNb_N8V_LHI7WIHvq6C0cZfZs,130
@@ -111,7 +113,7 @@ bl_operators/grease_pencil/__init__.pyi,sha256=aYuRtDCkR5cWIZ9YZ1PfrfsCpsnewS9D-
111
113
  bl_operators/image/__init__.pyi,sha256=Q0BfMC_waIJh2Bd1OnVnWD-fOHQHHqHORsYskeKf72k,3242
112
114
  bl_operators/image_as_planes/__init__.pyi,sha256=2ZQE5QfI0WJ7g6Ilhb94O8fGv82ytyi0Tl2m9mtobSw,4684
113
115
  bl_operators/mesh/__init__.pyi,sha256=_oPv0pZKG3wnDCyjLJKkVQ4RStIw2rHpJjGuKz3P3WY,1510
114
- bl_operators/node/__init__.pyi,sha256=bXznz87Me30N8eyVgN6WNJLTSOCSAmCW3C7aoK_WMkM,17712
116
+ bl_operators/node/__init__.pyi,sha256=6M7LfnYJPx3w6bzttBWSqJqICbE2XIdrVzHB4U_C4fo,17957
115
117
  bl_operators/node_editor/__init__.pyi,sha256=nXKuGcFgA7viFPwVoXogOT1iClUnXhtrK_rZTTXJ2Go,136
116
118
  bl_operators/node_editor/node_functions/__init__.pyi,sha256=lvnouyugGqmyzgLR8aRsLj823dK3wC22vEu8lucNhJI,626
117
119
  bl_operators/object/__init__.pyi,sha256=gxWZIVsZSLmnGqPzrPYdyjIgXoR52zeAZLh1Wl0haSo,10820
@@ -135,7 +137,7 @@ bl_ui/__init__.pyi,sha256=tSrO3hGIas4LoQiTtzhnuU9BrSF3GJ_Osq6OD0rc-BU,7063
135
137
  bl_ui/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
136
138
  bl_ui/anim/__init__.pyi,sha256=0JPiZ9LgUqabOkuvIP1YrX1uRrVQdPwUHVkGJ5PH8ho,878
137
139
  bl_ui/asset_shelf/__init__.pyi,sha256=ekmDyY0LQ7jrdveaVblTcxUNFWd4dd1NBVYkb5rbiLI,765
138
- bl_ui/generic_ui_list/__init__.pyi,sha256=81QVZe8pd6NSZddr_UJME5l09AMF9ve3nOv59JqJmxo,3771
140
+ bl_ui/generic_ui_list/__init__.pyi,sha256=uv5FzPS6dSIbKdj1fRLyKWgI1QeGv3iO2tbOJmsh9HQ,3770
139
141
  bl_ui/node_add_menu/__init__.pyi,sha256=6Qu5laFS_5s9S6y9at_1qBnI_nMXeTx8FiQtdnbvAuo,7927
140
142
  bl_ui/node_add_menu_compositor/__init__.pyi,sha256=dob1UYQq_Vi-gROCfc8XDNKAt2GYv3Rhhj58L_MH8AA,11657
141
143
  bl_ui/node_add_menu_geometry/__init__.pyi,sha256=QV7ZetK6xQbSEgT-6RKPzfsQrXVrHT8tHVEdwGjaCLk,33980
@@ -223,7 +225,7 @@ bmesh/types/__init__.pyi,sha256=s6DSyfmVKmnKx1GzKnTZajl_Ni7UkN0LZNbmJFVtx4Y,3981
223
225
  bmesh/utils/__init__.pyi,sha256=LNxIl4-PECWMRk6rvR7v7_6ipypEVc1-Kx-ujzZxR5M,5531
224
226
  bpy/__init__.pyi,sha256=2c24IZe013Q0UbFSvpU9JKRYusCUwGYTXbNDx17dK5g,490
225
227
  bpy/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
226
- bpy/app/__init__.pyi,sha256=ybu4c9DGZaTtM5DIsVYZ8Y3Vg98NzuGpl4yOleIbM5c,8712
228
+ bpy/app/__init__.pyi,sha256=QzLt2Ydy0ksVLxYOnDmBohdnTyjYRbhmYCTof7hBFuQ,8919
227
229
  bpy/app/handlers/__init__.pyi,sha256=vxcj3vFmnFwA2JI8EdkC7ABpZkKNQs5AVadOyAamNe4,8062
228
230
  bpy/app/icons/__init__.pyi,sha256=3qIiozVL2TnlE1vZotNGuxX5DDrr1PsN6UWJCeUkJ8E,798
229
231
  bpy/app/timers/__init__.pyi,sha256=VuykhQjGUw3Y7i1Ssy0vkBzAAdRJSMwJft4Ml1Fa8-g,1522
@@ -311,7 +313,7 @@ bpy/path/__init__.pyi,sha256=jgXGlVLUTr15BhcgCVnkz6WlJp4yjpHhJc4TJAXSbsU,4632
311
313
  bpy/props/__init__.pyi,sha256=BFnRoY78kkf6szROPfp4HSETs8yEgMeKE4QeSd2vDrs,41820
312
314
  bpy/stub_internal/__init__.pyi,sha256=h3K2LGZ8lcLY-Oo9ym-HEopjGScc4iTfpT1MU_6smTI,126
313
315
  bpy/stub_internal/rna_enums/__init__.pyi,sha256=qwmvb4vKgXjyUx69cDNAssAsbkYCVs1ODFOk4wl9yMY,144112
314
- bpy/types/__init__.pyi,sha256=_Fy-udGVZQq-CE5-KyuOaSUd2Hkyb8khT5vhLPKoK6s,5374433
316
+ bpy/types/__init__.pyi,sha256=y-a-n_TEtkkfC4LhVjz_3cmmQWR5xUNMPvsbKTp0_EU,5381461
315
317
  bpy/utils/__init__.pyi,sha256=z2RE91bnjKGSocTVMkIrZ1HS9Q5UUC_u1eo3Kv1DVzs,13054
316
318
  bpy/utils/previews/__init__.pyi,sha256=ByUvnneVHqE8dr5c1-hYsf-6qaKWdU0KP0IbwA5QN00,2028
317
319
  bpy/utils/units/__init__.pyi,sha256=CbBgOpnx48WP0flNilskhsmA7YCAnbbj07vr3OXlMG8,2214
@@ -338,7 +340,7 @@ freestyle/functions/__init__.pyi,sha256=VIOR7rzJk4cKlroiL1wyjn9ryN-gEBYy_5X2LLIs
338
340
  freestyle/predicates/__init__.pyi,sha256=mzuSrIsB8yriP9gADA7L5aKabIWLpk1F5iRb4vp2T2A,11559
339
341
  freestyle/shaders/__init__.pyi,sha256=elfbSCX1X1jVvNdRBz7ODmbpj5-rhCKrdZnw6MRx4K4,22112
340
342
  freestyle/types/__init__.pyi,sha256=M4Kdyr57Ipyu5IshKDRbfnKzxnCM9gy2Af44ktm-E8s,88233
341
- freestyle/utils/__init__.pyi,sha256=ygrSXEnt4YrKa0l7qpin1dsgCX2gOWtS8wgOuS-LF_Q,5050
343
+ freestyle/utils/__init__.pyi,sha256=GH1hFYnOGbqsxBsOMNElGYhwjHbF7pKVdCEZKyQ5Mdk,5050
342
344
  freestyle/utils/ContextFunctions/__init__.pyi,sha256=Gaa6QxLegxyZMDEdscucxbMlk6dBfIfBh7SMzMw8GjM,2926
343
345
  gpu/__init__.pyi,sha256=TLoatdrTMM6vfjnbuQA6cW38ARW5nuLa4Y-eicnJU5Q,8900
344
346
  gpu/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -364,7 +366,7 @@ keyingsets_builtins/__init__.pyi,sha256=GFCf27uFnI3fSM3FFHhsUmCejf9_hH3w4ZyXh8u6
364
366
  keyingsets_builtins/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
365
367
  mathutils/__init__.pyi,sha256=ZKL_f4PZHCFCI61ywjxdmL8mLWhm5e5GNdVjzlhXBoM,59647
366
368
  mathutils/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
367
- mathutils/bvhtree/__init__.pyi,sha256=Udecb16nXe68Lfssb_exAZWa0z6M6ZVl86MSWK99KrQ,4121
369
+ mathutils/bvhtree/__init__.pyi,sha256=t07iqIreYFn5N3SiBfMcDkYrtRimXORheJpwyuDFJ7w,4102
368
370
  mathutils/geometry/__init__.pyi,sha256=LbntkppsbVjYF62rey4pNh8Ok6lA51KuRarm_Dc5Q9E,18344
369
371
  mathutils/interpolate/__init__.pyi,sha256=QlQGGsjQkSda5BAkZjVpMAZ9WtVwlLK-uSB8W4n5_iE,481
370
372
  mathutils/kdtree/__init__.pyi,sha256=ikBFlCtJ6zDRwbgc5zazChNCMUv0xkY3mO51LMO7o_o,1802
@@ -377,7 +379,7 @@ rna_keymap_ui/__init__.pyi,sha256=HjNXbu5w-94HLbvVQlEWXV3JVrgWpNz9jiJ3mzGMCNg,48
377
379
  rna_keymap_ui/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
378
380
  rna_prop_ui/__init__.pyi,sha256=Gn7kc9WhI3qPObIz8QiFbjeVIP7GCeF6liywBzIEcnE,1402
379
381
  rna_prop_ui/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
380
- fake_bpy_module_latest-20260116.dist-info/METADATA,sha256=LrfDPE8cIWttTcUR62qHjhuyQOaLs95aRPH0KyNL8eE,7739
381
- fake_bpy_module_latest-20260116.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
382
- fake_bpy_module_latest-20260116.dist-info/top_level.txt,sha256=LGIXuHDoaVTgSTMScq2hvwZRtozSAzYE7RqrFaRqT6o,553
383
- fake_bpy_module_latest-20260116.dist-info/RECORD,,
382
+ fake_bpy_module_latest-20260117.dist-info/METADATA,sha256=6d-n65jWb52sNp7XfAorsPrhC0fXXnWV9bAvt558DVc,7739
383
+ fake_bpy_module_latest-20260117.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
384
+ fake_bpy_module_latest-20260117.dist-info/top_level.txt,sha256=LGIXuHDoaVTgSTMScq2hvwZRtozSAzYE7RqrFaRqT6o,553
385
+ fake_bpy_module_latest-20260117.dist-info/RECORD,,
@@ -119,7 +119,7 @@ def material_from_fedge(fe) -> None:
119
119
  """get the diffuse RGBA color from an FEdge"""
120
120
 
121
121
  def normal_at_I0D(it) -> None: ...
122
- def pairwise(iterable, types={StrokeVertexIterator, Stroke}) -> None:
122
+ def pairwise(iterable, types={Stroke, StrokeVertexIterator}) -> None:
123
123
  """Yields a tuple containing the previous and current object"""
124
124
 
125
125
  def rgb_to_bw(r, g, b) -> None:
@@ -7,7 +7,6 @@ import typing
7
7
  import collections.abc
8
8
  import typing_extensions
9
9
  import numpy.typing as npt
10
- import _bpy_types
11
10
  import bmesh.types
12
11
  import bpy.types
13
12
  import mathutils
@@ -24,7 +23,7 @@ class BVHTree:
24
23
  @classmethod
25
24
  def FromObject(
26
25
  cls,
27
- object: _bpy_types.Object,
26
+ object: bpy.types.Object,
28
27
  depsgraph: bpy.types.Depsgraph,
29
28
  *,
30
29
  deform: bool = True,