fake-bpy-module 20240707__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.

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
 
bpy/types/__init__.pyi CHANGED
@@ -99089,18 +99089,6 @@ class bpy_prop_collection(typing.Generic[GenericType1]):
99089
99089
  """
99090
99090
  ...
99091
99091
 
99092
- def __getitem__(
99093
- self, key: int | str | slice
99094
- ) -> GenericType1 | tuple[GenericType1, ...]:
99095
- """
99096
-
99097
- :param key:
99098
- :type key: int | str | slice
99099
- :return:
99100
- :rtype: GenericType1 | tuple[GenericType1, ...]
99101
- """
99102
- ...
99103
-
99104
99092
  def __setitem__(self, key: int, value: GenericType1):
99105
99093
  """
99106
99094
 
@@ -99503,16 +99491,6 @@ class bpy_prop_array(typing.Generic[GenericType1]):
99503
99491
  """
99504
99492
  ...
99505
99493
 
99506
- def __getitem__(self, key: int | slice) -> GenericType1 | tuple[GenericType1, ...]:
99507
- """
99508
-
99509
- :param key:
99510
- :type key: int | slice
99511
- :return:
99512
- :rtype: GenericType1 | tuple[GenericType1, ...]
99513
- """
99514
- ...
99515
-
99516
99494
  @typing.overload
99517
99495
  def __setitem__(self, key: int, value: GenericType1):
99518
99496
  """
@@ -99535,20 +99513,6 @@ class bpy_prop_array(typing.Generic[GenericType1]):
99535
99513
  """
99536
99514
  ...
99537
99515
 
99538
- def __setitem__(
99539
- self,
99540
- key: int | slice,
99541
- value: GenericType1 | collections.abc.Iterable[GenericType1],
99542
- ):
99543
- """
99544
-
99545
- :param key:
99546
- :type key: int | slice
99547
- :param value:
99548
- :type value: GenericType1 | collections.abc.Iterable[GenericType1]
99549
- """
99550
- ...
99551
-
99552
99516
  def __delitem__(self, key: int):
99553
99517
  """
99554
99518
 
@@ -1,17 +1,17 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: fake-bpy-module
3
- Version: 20240707
3
+ Version: 20240708
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
7
7
  Maintainer: nutti
8
8
  Maintainer-email: nutti.metro@gmail.com
9
9
  Project-URL: Homepage, https://github.com/nutti/fake-bpy-module
10
- Project-URL: Documentation, https://github.com/nutti/fake-bpy-module/blob/master/README.md
10
+ Project-URL: Documentation, https://github.com/nutti/fake-bpy-module/blob/main/README.md
11
11
  Project-URL: Source, https://github.com/nutti/fake-bpy-module
12
12
  Project-URL: Download, https://github.com/nutti/fake-bpy-module/releases
13
13
  Project-URL: Bug Tracker, https://github.com/nutti/fake-bpy-module/issues
14
- Project-URL: Release Notes, https://github.com/nutti/fake-bpy-module/blob/master/CHANGELOG.md
14
+ Project-URL: Release Notes, https://github.com/nutti/fake-bpy-module/blob/main/CHANGELOG.md
15
15
  Platform: Windows
16
16
  Platform: Linux
17
17
  Platform: Mac OS-X
@@ -58,7 +58,7 @@ You can install it as a pip package.
58
58
 
59
59
  #### Install a latest package
60
60
 
61
- If you install fake-bpy-module for Blender latest build (master branch daily
61
+ If you install fake-bpy-module for Blender latest build (main branch daily
62
62
  build powered by [nutti/blender-daily-build](https://github.com/nutti/blender-daily-build)),
63
63
  run below command.
64
64
 
@@ -179,7 +179,7 @@ bmesh/__init__.pyi,sha256=Vl3kfms133C_44cIoc_yK6U3dRQV102LIhkJlyWarzE,1583
179
179
  bmesh/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
180
180
  bmesh/geometry/__init__.pyi,sha256=UJWjDzaBqiHR7NE_t6JEKNLzJQc5I36b_8GHcn5Ywlc,758
181
181
  bmesh/ops/__init__.pyi,sha256=io89iKVZsvScZ9XRMDqhvcyiZSpO2Z5nkYQ43j-xBGw,72742
182
- bmesh/types/__init__.pyi,sha256=Mb4FJ0WIj8n62V4RIj5BuhkouPBTh1NudyvZ1DK0AC8,40444
182
+ bmesh/types/__init__.pyi,sha256=uzRDluVHVhNoPPGUoXvidvnhl8C1EGybkUmqVS9Hj-0,41408
183
183
  bmesh/utils/__init__.pyi,sha256=bWksp9MtwGJgMwLreGFvkjipCe9n64fWa9hHNSFpT9Q,6136
184
184
  bpy/__init__.pyi,sha256=UNHjZG8rO0s6czpA3abLXpCy_-0Uq3ZyWeH6gufZUMw,497
185
185
  bpy/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -268,7 +268,7 @@ bpy/ops/workspace/__init__.pyi,sha256=OSELKT_HUs2W6cOk2wOigZgkbieGezMVWTi45f4x-I
268
268
  bpy/ops/world/__init__.pyi,sha256=_z3cX9CYV0nTmSiSQcC82nRiXYriWMcHomfxmSl2GxM,1057
269
269
  bpy/path/__init__.pyi,sha256=JNPq1rQ-4mgeUozamnhX7gmvd8eR4tqWr7Bd_CQPlzw,11540
270
270
  bpy/props/__init__.pyi,sha256=Ve1JEXbDvR1jPFE21dZEQQaBz15sdZ0IG-N3CVxtV40,29575
271
- bpy/types/__init__.pyi,sha256=cHVKocK1nFSILdu2yo8IpPxU295Rbo-6RHlTc-GAb3E,5211884
271
+ bpy/types/__init__.pyi,sha256=H63K2VwIWssI-trsLkkW0deQH1mnYsZwfkDewJsoUak,5211034
272
272
  bpy/utils/__init__.pyi,sha256=QcqqpZO-mCNru9_xxenH6pGFJHHEOwM6Sj1lt0I_i3Y,19172
273
273
  bpy/utils/previews/__init__.pyi,sha256=yNPv0blwMO3GrieizVXqeFQjVM68njALxZGJOdC3QHE,4280
274
274
  bpy/utils/units/__init__.pyi,sha256=2OtqF54xi6peGyNeSGkuaLpytf2EESF753zqooe8bwc,2719
@@ -331,7 +331,7 @@ keyingsets_builtins/__init__.pyi,sha256=tmDK7-BzPnBeG6DHPbZCW5esGBrCL9Lxhft2G9tW
331
331
  keyingsets_builtins/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
332
332
  keyingsets_utils/__init__.pyi,sha256=GM90DATed06QP-LtGvltmKfalWq6tTUeHhUeuRb3hNE,863
333
333
  keyingsets_utils/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
334
- mathutils/__init__.pyi,sha256=fLVlJaqbegpMNNCoUdSjvuwQGIwvAGPllqKj33S_KNg,80619
334
+ mathutils/__init__.pyi,sha256=YMZ6BaGdGt1P6PXaAbkmUXlVq9iLuDFtYugATfKu22Q,79408
335
335
  mathutils/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
336
336
  mathutils/bvhtree/__init__.pyi,sha256=4BPJX_2fRlzlpkfZ4laDyb41DuLTR7XHjJbFJ6IH89w,4411
337
337
  mathutils/geometry/__init__.pyi,sha256=V86d1sF454Aiu7gAfx4zWkaf4vrsgzDgz6Q_S9vRJws,21230
@@ -352,7 +352,7 @@ rna_xml/__init__.pyi,sha256=Ek8Wb1jhkxLp_lmAnq84ILCt3HblVtf3FNIALSclsI8,664
352
352
  rna_xml/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
353
353
  sys_info/__init__.pyi,sha256=-GCmGVtiditgEnxiqi7hwH2wbEMmrtUNGvMEbxVezU4,189
354
354
  sys_info/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
355
- fake_bpy_module-20240707.dist-info/METADATA,sha256=QxJqWJVNA7p3MDt8NTJ1SGy4oyD9dBFOIYAjJAsFZOo,7194
356
- fake_bpy_module-20240707.dist-info/WHEEL,sha256=y4mX-SOX4fYIkonsAGA5N0Oy-8_gI4FXw5HNI1xqvWg,91
357
- fake_bpy_module-20240707.dist-info/top_level.txt,sha256=laOLfHIg0_6N4ntsGrWh85yODawYeLVGI-wex_FGLUI,509
358
- fake_bpy_module-20240707.dist-info/RECORD,,
355
+ fake_bpy_module-20240708.dist-info/METADATA,sha256=d3WP8Ar-MeNbuebK7y_fLdIf_MVwyvV6067bhW8F2Qs,7188
356
+ fake_bpy_module-20240708.dist-info/WHEEL,sha256=y4mX-SOX4fYIkonsAGA5N0Oy-8_gI4FXw5HNI1xqvWg,91
357
+ fake_bpy_module-20240708.dist-info/top_level.txt,sha256=laOLfHIg0_6N4ntsGrWh85yODawYeLVGI-wex_FGLUI,509
358
+ fake_bpy_module-20240708.dist-info/RECORD,,
mathutils/__init__.pyi CHANGED
@@ -1130,22 +1130,6 @@ class Matrix:
1130
1130
  """
1131
1131
  ...
1132
1132
 
1133
- def __matmul__(
1134
- self,
1135
- other: Matrix
1136
- | Vector
1137
- | collections.abc.Sequence[collections.abc.Sequence[float]]
1138
- | collections.abc.Sequence[float],
1139
- ) -> Matrix | Vector:
1140
- """
1141
-
1142
- :param other:
1143
- :type other: Matrix | Vector | collections.abc.Sequence[collections.abc.Sequence[float]] | collections.abc.Sequence[float]
1144
- :return:
1145
- :rtype: Matrix | Vector
1146
- """
1147
- ...
1148
-
1149
1133
  def __radd__(
1150
1134
  self, other: Matrix | collections.abc.Sequence[collections.abc.Sequence[float]]
1151
1135
  ) -> Matrix:
@@ -1576,18 +1560,6 @@ class Quaternion:
1576
1560
  """
1577
1561
  ...
1578
1562
 
1579
- def __matmul__(
1580
- self, other: Quaternion | Vector | collections.abc.Sequence[float]
1581
- ) -> Quaternion | Vector:
1582
- """
1583
-
1584
- :param other:
1585
- :type other: Quaternion | Vector | collections.abc.Sequence[float]
1586
- :return:
1587
- :rtype: Quaternion | Vector
1588
- """
1589
- ...
1590
-
1591
1563
  def __radd__(
1592
1564
  self, other: Quaternion | collections.abc.Sequence[float]
1593
1565
  ) -> Quaternion:
@@ -3160,22 +3132,6 @@ class Vector:
3160
3132
  """
3161
3133
  ...
3162
3134
 
3163
- def __matmul__(
3164
- self,
3165
- other: Matrix
3166
- | Vector
3167
- | collections.abc.Sequence[collections.abc.Sequence[float]]
3168
- | collections.abc.Sequence[float],
3169
- ) -> Vector | float:
3170
- """
3171
-
3172
- :param other:
3173
- :type other: Matrix | Vector | collections.abc.Sequence[collections.abc.Sequence[float]] | collections.abc.Sequence[float]
3174
- :return:
3175
- :rtype: Vector | float
3176
- """
3177
- ...
3178
-
3179
3135
  def __radd__(self, other: Vector | collections.abc.Sequence[float]) -> Vector:
3180
3136
  """
3181
3137