fake-bpy-module 20240706__py3-none-any.whl → 20240708__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 (63) hide show
  1. bl_operators/assets/__init__.pyi +8 -8
  2. bl_operators/image_as_planes/__init__.pyi +43 -43
  3. bl_operators/node/__init__.pyi +234 -234
  4. bl_operators/object_quick_effects/__init__.pyi +21 -21
  5. bl_operators/presets/__init__.pyi +388 -388
  6. bl_ui/properties_collection/__init__.pyi +12 -12
  7. bl_ui/properties_constraint/__init__.pyi +954 -954
  8. bl_ui/properties_data_armature/__init__.pyi +85 -85
  9. bl_ui/properties_data_bone/__init__.pyi +12 -12
  10. bl_ui/properties_data_curve/__init__.pyi +92 -92
  11. bl_ui/properties_data_curves/__init__.pyi +12 -12
  12. bl_ui/properties_data_empty/__init__.pyi +12 -12
  13. bl_ui/properties_data_gpencil/__init__.pyi +265 -265
  14. bl_ui/properties_data_grease_pencil/__init__.pyi +312 -312
  15. bl_ui/properties_data_lattice/__init__.pyi +12 -12
  16. bl_ui/properties_data_light/__init__.pyi +12 -12
  17. bl_ui/properties_data_lightprobe/__init__.pyi +12 -12
  18. bl_ui/properties_data_mesh/__init__.pyi +527 -527
  19. bl_ui/properties_data_metaball/__init__.pyi +12 -12
  20. bl_ui/properties_data_modifier/__init__.pyi +19 -19
  21. bl_ui/properties_data_pointcloud/__init__.pyi +140 -140
  22. bl_ui/properties_data_shaderfx/__init__.pyi +5 -5
  23. bl_ui/properties_data_speaker/__init__.pyi +12 -12
  24. bl_ui/properties_data_volume/__init__.pyi +65 -65
  25. bl_ui/properties_freestyle/__init__.pyi +248 -248
  26. bl_ui/properties_material/__init__.pyi +145 -145
  27. bl_ui/properties_material_gpencil/__init__.pyi +86 -86
  28. bl_ui/properties_object/__init__.pyi +75 -75
  29. bl_ui/properties_output/__init__.pyi +201 -201
  30. bl_ui/properties_particle/__init__.pyi +220 -220
  31. bl_ui/properties_physics_cloth/__init__.pyi +12 -12
  32. bl_ui/properties_physics_common/__init__.pyi +12 -12
  33. bl_ui/properties_physics_dynamicpaint/__init__.pyi +187 -187
  34. bl_ui/properties_physics_field/__init__.pyi +19 -19
  35. bl_ui/properties_physics_fluid/__init__.pyi +61 -61
  36. bl_ui/properties_physics_rigidbody/__init__.pyi +5 -5
  37. bl_ui/properties_physics_rigidbody_constraint/__init__.pyi +5 -5
  38. bl_ui/properties_physics_softbody/__init__.pyi +12 -12
  39. bl_ui/properties_render/__init__.pyi +217 -217
  40. bl_ui/properties_scene/__init__.pyi +143 -143
  41. bl_ui/properties_texture/__init__.pyi +156 -156
  42. bl_ui/properties_view_layer/__init__.pyi +78 -78
  43. bl_ui/properties_workspace/__init__.pyi +64 -64
  44. bl_ui/properties_world/__init__.pyi +12 -12
  45. bl_ui/space_clip/__init__.pyi +366 -366
  46. bl_ui/space_dopesheet/__init__.pyi +176 -176
  47. bl_ui/space_filebrowser/__init__.pyi +735 -735
  48. bl_ui/space_image/__init__.pyi +646 -646
  49. bl_ui/space_sequencer/__init__.pyi +841 -389
  50. bl_ui/space_time/__init__.pyi +11 -11
  51. bl_ui/space_userpref/__init__.pyi +684 -684
  52. bl_ui/space_view3d/__init__.pyi +1152 -1152
  53. bl_ui/space_view3d_toolbar/__init__.pyi +2831 -2831
  54. bmesh/types/__init__.pyi +48 -0
  55. bpy/types/__init__.pyi +70624 -70606
  56. {fake_bpy_module-20240706.dist-info → fake_bpy_module-20240708.dist-info}/METADATA +4 -4
  57. {fake_bpy_module-20240706.dist-info → fake_bpy_module-20240708.dist-info}/RECORD +63 -63
  58. freestyle/utils/__init__.pyi +1 -1
  59. keyingsets_builtins/__init__.pyi +87 -87
  60. mathutils/__init__.pyi +156 -50
  61. nodeitems_builtins/__init__.pyi +7 -7
  62. {fake_bpy_module-20240706.dist-info → fake_bpy_module-20240708.dist-info}/WHEEL +0 -0
  63. {fake_bpy_module-20240706.dist-info → fake_bpy_module-20240708.dist-info}/top_level.txt +0 -0
bmesh/types/__init__.pyi CHANGED
@@ -330,6 +330,7 @@ class BMEdgeSeq:
330
330
  """
331
331
  ...
332
332
 
333
+ @typing.overload
333
334
  def __getitem__(self, key: int) -> BMEdge:
334
335
  """
335
336
 
@@ -340,6 +341,17 @@ class BMEdgeSeq:
340
341
  """
341
342
  ...
342
343
 
344
+ @typing.overload
345
+ def __getitem__(self, key: slice) -> tuple[BMEdge, ...]:
346
+ """
347
+
348
+ :param key:
349
+ :type key: slice
350
+ :return:
351
+ :rtype: tuple[BMEdge, ...]
352
+ """
353
+ ...
354
+
343
355
  def __iter__(self) -> BMIter[BMEdge]:
344
356
  """
345
357
 
@@ -404,6 +416,7 @@ class BMElemSeq(typing.Generic[GenericType1]):
404
416
  """Initialize the index values of this sequence.This is the equivalent of looping over all elements and assigning the index values."""
405
417
  ...
406
418
 
419
+ @typing.overload
407
420
  def __getitem__(self, key: int) -> GenericType1:
408
421
  """
409
422
 
@@ -414,6 +427,17 @@ class BMElemSeq(typing.Generic[GenericType1]):
414
427
  """
415
428
  ...
416
429
 
430
+ @typing.overload
431
+ def __getitem__(self, key: slice) -> tuple[GenericType1, ...]:
432
+ """
433
+
434
+ :param key:
435
+ :type key: slice
436
+ :return:
437
+ :rtype: tuple[GenericType1, ...]
438
+ """
439
+ ...
440
+
417
441
  def __iter__(self) -> BMIter[GenericType1]:
418
442
  """
419
443
 
@@ -720,6 +744,7 @@ class BMFaceSeq:
720
744
  """
721
745
  ...
722
746
 
747
+ @typing.overload
723
748
  def __getitem__(self, key: int) -> BMFace:
724
749
  """
725
750
 
@@ -730,6 +755,17 @@ class BMFaceSeq:
730
755
  """
731
756
  ...
732
757
 
758
+ @typing.overload
759
+ def __getitem__(self, key: slice) -> tuple[BMFace, ...]:
760
+ """
761
+
762
+ :param key:
763
+ :type key: slice
764
+ :return:
765
+ :rtype: tuple[BMFace, ...]
766
+ """
767
+ ...
768
+
733
769
  def __iter__(self) -> BMIter[BMFace]:
734
770
  """
735
771
 
@@ -1471,6 +1507,7 @@ class BMVertSeq:
1471
1507
  """
1472
1508
  ...
1473
1509
 
1510
+ @typing.overload
1474
1511
  def __getitem__(self, key: int) -> BMVert:
1475
1512
  """
1476
1513
 
@@ -1481,6 +1518,17 @@ class BMVertSeq:
1481
1518
  """
1482
1519
  ...
1483
1520
 
1521
+ @typing.overload
1522
+ def __getitem__(self, key: slice) -> tuple[BMVert, ...]:
1523
+ """
1524
+
1525
+ :param key:
1526
+ :type key: slice
1527
+ :return:
1528
+ :rtype: tuple[BMVert, ...]
1529
+ """
1530
+ ...
1531
+
1484
1532
  def __iter__(self) -> BMIter[BMVert]:
1485
1533
  """
1486
1534