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

bpy/types/__init__.pyi CHANGED
@@ -55948,25 +55948,6 @@ Shared Enum Types <bpy_types_enum_items/index>
55948
55948
  --------------------
55949
55949
 
55950
55950
  * bpy_struct.id_data
55951
- * Paint.brush
55952
- * Paint.brush_asset_reference
55953
- * Paint.eraser_brush
55954
- * Paint.eraser_brush_asset_reference
55955
- * Paint.palette
55956
- * Paint.show_brush
55957
- * Paint.show_brush_on_surface
55958
- * Paint.show_low_resolution
55959
- * Paint.use_sculpt_delay_updates
55960
- * Paint.use_symmetry_x
55961
- * Paint.use_symmetry_y
55962
- * Paint.use_symmetry_z
55963
- * Paint.use_symmetry_feather
55964
- * Paint.cavity_curve
55965
- * Paint.use_cavity
55966
- * Paint.tile_offset
55967
- * Paint.tile_x
55968
- * Paint.tile_y
55969
- * Paint.tile_z
55970
55951
 
55971
55952
  :columns: 2
55972
55953
 
@@ -55995,8 +55976,6 @@ Shared Enum Types <bpy_types_enum_items/index>
55995
55976
  * bpy_struct.property_unset
55996
55977
  * bpy_struct.type_recast
55997
55978
  * bpy_struct.values
55998
- * Paint.bl_rna_get_subclass
55999
- * Paint.bl_rna_get_subclass_py
56000
55979
 
56001
55980
  :columns: 2
56002
55981
 
@@ -103985,13 +103964,13 @@ class bpy_prop_collection[_GenericType1]:
103985
103964
  :rtype: list[_GenericType1, ...]
103986
103965
  """
103987
103966
 
103988
- def __setitem__(self, key: int | str, value: GenericType1 | None):
103967
+ def __setitem__(self, key: int | str, value: _GenericType1 | None):
103989
103968
  """
103990
103969
 
103991
103970
  :param key:
103992
103971
  :type key: int | str
103993
103972
  :param value:
103994
- :type value: GenericType1 | None
103973
+ :type value: _GenericType1 | None
103995
103974
  """
103996
103975
 
103997
103976
  @typing.overload
@@ -104044,6 +104023,127 @@ class bpy_prop_collection[_GenericType1]:
104044
104023
  :rtype: bool
104045
104024
  """
104046
104025
 
104026
+ class bpy_prop_collection_idprop[_GenericType1]:
104027
+ """built-in class used for user defined collections."""
104028
+
104029
+ def add(self) -> typing.Any:
104030
+ """This is a function to add a new item to a collection.
104031
+
104032
+ :return: A newly created item.
104033
+ :rtype: typing.Any
104034
+ """
104035
+
104036
+ def clear(self):
104037
+ """This is a function to remove all items from a collection."""
104038
+
104039
+ def move(self, src_index: int | None, dst_index: int | None):
104040
+ """This is a function to move an item in a collection.
104041
+
104042
+ :param src_index: Source item index.
104043
+ :type src_index: int | None
104044
+ :param dst_index: Destination item index.
104045
+ :type dst_index: int | None
104046
+ """
104047
+
104048
+ def remove(self, index: int | None):
104049
+ """This is a function to remove an item from a collection.
104050
+
104051
+ :param index: Index of the item to be removed.
104052
+ :type index: int | None
104053
+ """
104054
+
104055
+ @typing.overload
104056
+ def __getitem__(self, key: int | str) -> _GenericType1:
104057
+ """
104058
+
104059
+ :param key:
104060
+ :type key: int | str
104061
+ :return:
104062
+ :rtype: _GenericType1
104063
+ """
104064
+
104065
+ @typing.overload
104066
+ def __getitem__(self, key: slice) -> list[_GenericType1, ...]:
104067
+ """
104068
+
104069
+ :param key:
104070
+ :type key: slice
104071
+ :return:
104072
+ :rtype: list[_GenericType1, ...]
104073
+ """
104074
+
104075
+ def __setitem__(self, key: int | str, value: _GenericType1 | None):
104076
+ """
104077
+
104078
+ :param key:
104079
+ :type key: int | str
104080
+ :param value:
104081
+ :type value: _GenericType1 | None
104082
+ """
104083
+
104084
+ @typing.overload
104085
+ def __setitem__(self, key: int, value: _GenericType1 | None):
104086
+ """
104087
+
104088
+ :param key:
104089
+ :type key: int
104090
+ :param value:
104091
+ :type value: _GenericType1 | None
104092
+ """
104093
+
104094
+ @typing.overload
104095
+ def __setitem__(self, key: str, value: _GenericType1):
104096
+ """
104097
+
104098
+ :param key:
104099
+ :type key: str
104100
+ :param value:
104101
+ :type value: _GenericType1
104102
+ """
104103
+
104104
+ def __iter__(self) -> collections.abc.Iterator[_GenericType1]:
104105
+ """
104106
+
104107
+ :return:
104108
+ :rtype: collections.abc.Iterator[_GenericType1]
104109
+ """
104110
+
104111
+ def __next__(self) -> _GenericType1:
104112
+ """
104113
+
104114
+ :return:
104115
+ :rtype: _GenericType1
104116
+ """
104117
+
104118
+ def __len__(self) -> int:
104119
+ """
104120
+
104121
+ :return:
104122
+ :rtype: int
104123
+ """
104124
+
104125
+ def __contains__(self, key: str | tuple[str, ...] | _GenericType1) -> bool:
104126
+ """
104127
+
104128
+ :param key:
104129
+ :type key: str | tuple[str, ...] | _GenericType1
104130
+ :return:
104131
+ :rtype: bool
104132
+ """
104133
+
104134
+ def get[_GenericType2](
104135
+ self, key: str, default: _GenericType2 = None
104136
+ ) -> _GenericType1 | _GenericType2:
104137
+ """
104138
+
104139
+ :param key:
104140
+ :type key: str
104141
+ :param default:
104142
+ :type default: _GenericType2
104143
+ :return:
104144
+ :rtype: _GenericType1 | _GenericType2
104145
+ """
104146
+
104047
104147
  class bpy_prop_array[_GenericType1]:
104048
104148
  def __get__(self, instance, owner) -> bpy_prop_array[_GenericType1]:
104049
104149
  """
@@ -114073,35 +114173,6 @@ class XrUserPaths(bpy_prop_collection[XrUserPath], bpy_struct):
114073
114173
  :rtype: typing.Any
114074
114174
  """
114075
114175
 
114076
- class bpy_prop_collection_idprop:
114077
- """built-in class used for user defined collections."""
114078
-
114079
- def add(self) -> typing.Any:
114080
- """This is a function to add a new item to a collection.
114081
-
114082
- :return: A newly created item.
114083
- :rtype: typing.Any
114084
- """
114085
-
114086
- def clear(self):
114087
- """This is a function to remove all items from a collection."""
114088
-
114089
- def move(self, src_index: int | None, dst_index: int | None):
114090
- """This is a function to move an item in a collection.
114091
-
114092
- :param src_index: Source item index.
114093
- :type src_index: int | None
114094
- :param dst_index: Destination item index.
114095
- :type dst_index: int | None
114096
- """
114097
-
114098
- def remove(self, index: int | None):
114099
- """This is a function to remove an item from a collection.
114100
-
114101
- :param index: Index of the item to be removed.
114102
- :type index: int | None
114103
- """
114104
-
114105
114176
  class wmOwnerIDs(bpy_prop_collection[wmOwnerID], bpy_struct):
114106
114177
  def new(self, name: str) -> wmOwnerID:
114107
114178
  """Add ui tag
@@ -226190,7 +226261,7 @@ class UserSolidLight(bpy_struct):
226190
226261
  :rtype: typing.Any
226191
226262
  """
226192
226263
 
226193
- class UvSculpt(Paint, bpy_struct):
226264
+ class UvSculpt(bpy_struct):
226194
226265
  curve_preset: bpy._typing.rna_enums.BrushCurvePresetItems
226195
226266
  """
226196
226267
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.2
2
2
  Name: fake-bpy-module
3
- Version: 20250126
3
+ Version: 20250128
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
@@ -277,7 +277,7 @@ bpy/ops/workspace/__init__.pyi,sha256=BHvDV5CcVBnuKaL8akhm-Es7VcGUjf3jGFTbfx5YHC
277
277
  bpy/ops/world/__init__.pyi,sha256=pBV8EDA8HoWovDSul6mxkF7Mt6N3PQWuukRhkw3dBr8,601
278
278
  bpy/path/__init__.pyi,sha256=emlV7ocbsOuOSMzxJXr6ldKRk2-_K0DWlKc3Ylt5dsU,5484
279
279
  bpy/props/__init__.pyi,sha256=ZldUQ1MIMYkmYB0PpIP7HwwzMGpVB4rM3KeZOqV54sU,35236
280
- bpy/types/__init__.pyi,sha256=aSLcyOS43hE8IN8YndXRS1aoD8duKSEnCZ-QGT6Q8K4,5421071
280
+ bpy/types/__init__.pyi,sha256=L5VWnKjwrYVQxFo1-MJVVYhSZsyFouCApwfeJLGzfMw,5422557
281
281
  bpy/utils/__init__.pyi,sha256=0xYpOGROz80lrcCe4nko-nEkU-lsKJV09rjES5JIu7I,14765
282
282
  bpy/utils/previews/__init__.pyi,sha256=AsbDN4vRLbSTZ7_S_4LqmI1sJmV_8NnqDt1QfBdH94Y,2280
283
283
  bpy/utils/units/__init__.pyi,sha256=QuXx22JjmObRmP_KcdoqOlDSvVtXZHeK5nTIvwjcUnI,2645
@@ -312,7 +312,7 @@ freestyle/functions/__init__.pyi,sha256=sEPnGHwZm8XBlfE7CKLros3CKJlAh1h1FI74nBTE
312
312
  freestyle/predicates/__init__.pyi,sha256=TI-9arpIRbq7ePsxHS-d-4iIj54uHMp-ZyGhPVODMPg,13461
313
313
  freestyle/shaders/__init__.pyi,sha256=4a-rY8mkkIcsnIvYGcP8YgAULdJENDJnncju2CjhQVg,24014
314
314
  freestyle/types/__init__.pyi,sha256=Dmb8LokYlO2lCfmDwPX5MwwpnHHSRaXU2t6Nu37Rzjg,100200
315
- freestyle/utils/__init__.pyi,sha256=DdX3Qj2yTIu8jXdOAnf_9yKhJ5AQFnS_zVvSAdTfBpU,5108
315
+ freestyle/utils/__init__.pyi,sha256=lW5JWrilkFTvRmtYoS3hbmWfj2abo2hHsvp4eyGLbcQ,5108
316
316
  freestyle/utils/ContextFunctions/__init__.pyi,sha256=fPDfiBEjpoqXQhBhmHJ6WxG9oLMItwQ32MxKQz_c9_I,3445
317
317
  gpu/__init__.pyi,sha256=Q-AbyJO85pPYcwXNWtvgAhFGGJ6OnnHrlsXQxur9jhs,7999
318
318
  gpu/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -359,7 +359,7 @@ rna_prop_ui/__init__.pyi,sha256=lShhkbbeJ_ANi2dy4J4HIkyp1HZrMqCfhcf8QpAQsj0,1281
359
359
  rna_prop_ui/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
360
360
  rna_xml/__init__.pyi,sha256=idYsAZj-_egBKMA2pQl2P9IoNhZxXIkBSALFuq-ylO8,577
361
361
  rna_xml/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
362
- fake_bpy_module-20250126.dist-info/METADATA,sha256=VRMx90ecFXzwdaigKSNERoa7M66HbHmy7XdqknabyB4,7289
363
- fake_bpy_module-20250126.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
364
- fake_bpy_module-20250126.dist-info/top_level.txt,sha256=SZm3DVRKif7dFSjYKiIIg3_7uqjIwRAwOnCIcT4hRNM,500
365
- fake_bpy_module-20250126.dist-info/RECORD,,
362
+ fake_bpy_module-20250128.dist-info/METADATA,sha256=xLeZjc0b4CJJQ7QDh3l6rVqif6UD-zuewrdUgk6bytI,7289
363
+ fake_bpy_module-20250128.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
364
+ fake_bpy_module-20250128.dist-info/top_level.txt,sha256=SZm3DVRKif7dFSjYKiIIg3_7uqjIwRAwOnCIcT4hRNM,500
365
+ fake_bpy_module-20250128.dist-info/RECORD,,
@@ -124,7 +124,7 @@ def material_from_fedge(fe):
124
124
  """get the diffuse RGBA color from an FEdge"""
125
125
 
126
126
  def normal_at_I0D(it): ...
127
- def pairwise(iterable, types={StrokeVertexIterator, Stroke}):
127
+ def pairwise(iterable, types={Stroke, StrokeVertexIterator}):
128
128
  """Yields a tuple containing the previous and current object"""
129
129
 
130
130
  def rgb_to_bw(r, g, b):