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

@@ -162,6 +162,20 @@ def package_mark_clear(
162
162
 
163
163
  ...
164
164
 
165
+ def package_mark_clear_all(
166
+ override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
167
+ execution_context: int | str | None = None,
168
+ undo: bool | None = None,
169
+ ):
170
+ """Undocumented, consider contributing.
171
+
172
+ :type override_context: bpy.types.Context | dict[str, typing.Any] | None
173
+ :type execution_context: int | str | None
174
+ :type undo: bool | None
175
+ """
176
+
177
+ ...
178
+
165
179
  def package_mark_set(
166
180
  override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
167
181
  execution_context: int | str | None = None,
@@ -183,6 +197,20 @@ def package_mark_set(
183
197
 
184
198
  ...
185
199
 
200
+ def package_mark_set_all(
201
+ override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
202
+ execution_context: int | str | None = None,
203
+ undo: bool | None = None,
204
+ ):
205
+ """Undocumented, consider contributing.
206
+
207
+ :type override_context: bpy.types.Context | dict[str, typing.Any] | None
208
+ :type execution_context: int | str | None
209
+ :type undo: bool | None
210
+ """
211
+
212
+ ...
213
+
186
214
  def package_obsolete_marked(
187
215
  override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
188
216
  execution_context: int | str | None = None,
bpy/types/__init__.pyi CHANGED
@@ -99013,48 +99013,16 @@ class bpy_prop_collection(typing.Generic[GenericType1]):
99013
99013
  """
99014
99014
  ...
99015
99015
 
99016
- @typing.overload
99017
- def __setitem__(self, key: int | str, value: GenericType1):
99016
+ def __setitem__(self, key: int, value: GenericType1):
99018
99017
  """
99019
99018
 
99020
99019
  :param key:
99021
- :type key: int | str
99020
+ :type key: int
99022
99021
  :param value:
99023
99022
  :type value: GenericType1
99024
99023
  """
99025
99024
  ...
99026
99025
 
99027
- @typing.overload
99028
- def __setitem__(self, key: slice, value: tuple[GenericType1]):
99029
- """
99030
-
99031
- :param key:
99032
- :type key: slice
99033
- :param value:
99034
- :type value: tuple[GenericType1]
99035
- """
99036
- ...
99037
-
99038
- def __setitem__(
99039
- self, key: int | str | slice, value: GenericType1 | tuple[GenericType1]
99040
- ):
99041
- """
99042
-
99043
- :param key:
99044
- :type key: int | str | slice
99045
- :param value:
99046
- :type value: GenericType1 | tuple[GenericType1]
99047
- """
99048
- ...
99049
-
99050
- def __delitem__(self, key: int | str | slice):
99051
- """
99052
-
99053
- :param key:
99054
- :type key: int | str | slice
99055
- """
99056
- ...
99057
-
99058
99026
  def __iter__(self) -> collections.abc.Iterator[GenericType1]:
99059
99027
  """
99060
99028
 
@@ -99484,11 +99452,11 @@ class bpy_prop_array(typing.Generic[GenericType1]):
99484
99452
  """
99485
99453
  ...
99486
99454
 
99487
- def __delitem__(self, key: int | slice):
99455
+ def __delitem__(self, key: int):
99488
99456
  """
99489
99457
 
99490
99458
  :param key:
99491
- :type key: int | slice
99459
+ :type key: int
99492
99460
  """
99493
99461
  ...
99494
99462
 
@@ -168504,10 +168472,10 @@ class Object(ID, bpy_struct):
168504
168472
  :type: typing.Any
168505
168473
  """
168506
168474
 
168507
- data: ID | None
168508
- """ Object data
168475
+ data: Armature | Camera | Curve | Curves | GreasePencil | GreasePencilv3 | Lattice | Light | LightProbe | Mesh | MetaBall | PointCloud | Speaker | SurfaceCurve | TextCurve | Volume | None
168476
+ """
168509
168477
 
168510
- :type: ID | None
168478
+ :type: Armature | Camera | Curve | Curves | GreasePencil | GreasePencilv3 | Lattice | Light | LightProbe | Mesh | MetaBall | PointCloud | Speaker | SurfaceCurve | TextCurve | Volume | None
168511
168479
  """
168512
168480
 
168513
168481
  delta_location: mathutils.Vector
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: fake-bpy-module
3
- Version: 20240621
3
+ Version: 20240623
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
@@ -141,13 +141,11 @@ See [CHANGELOG.md](CHANGELOG.md)
141
141
  If you want to report bug, request features or discuss about this project, see
142
142
  [ISSUES.md](ISSUES.md).
143
143
 
144
- [fake-bpy-module](https://blender.chat/channel/fake-bpy-module) channel is
145
- available on [blender.chat](https://blender.chat/).
144
+ [fake-bpy-module channel](https://discord.gg/dGU9et5S2d) is
145
+ available on the Discord server.
146
146
  The timely discussion and release announcement about fake-bpy-module will be
147
147
  made in this channel.
148
148
 
149
- Note: Registration of blender.chat is required for accessing fake-bpy-module channel.
150
-
151
149
  ## Contribution
152
150
 
153
151
  If you want to contribute to this project, see [CONTRIBUTING.md](CONTRIBUTING.md).
@@ -208,7 +208,7 @@ bpy/ops/dpaint/__init__.pyi,sha256=p2GNDiQaiN6ti8NDWiHfw_DEBoOegGy9HlMcPF-iWU4,2
208
208
  bpy/ops/ed/__init__.pyi,sha256=uFn4FE7i65AXTZj-spBc7Z_AEpYUMr6iOA6CFj-PCIY,8836
209
209
  bpy/ops/export_anim/__init__.pyi,sha256=dqdhbmF-AnFtIIHU5e9aoiWcVjlHYvK5Ys1G1hOMbCo,2150
210
210
  bpy/ops/export_scene/__init__.pyi,sha256=PpuB77uBIdpUBJCiQr6BiJv5ddq289n6qRPlxXQKskg,37174
211
- bpy/ops/extensions/__init__.pyi,sha256=Km-D70afMgCV3tIb5bIDza5GcS7Zgb1MqfkQHmWAUhE,17097
211
+ bpy/ops/extensions/__init__.pyi,sha256=2MkpVp0X45eSa0-t6-PqV9-Xtn3t-Cd37Q2z5W0OhHY,17899
212
212
  bpy/ops/file/__init__.pyi,sha256=2DNu_Qn5lcL73TWsZ-D1ki8WRRUC_eC-WPAwaV8YY5U,24731
213
213
  bpy/ops/fluid/__init__.pyi,sha256=HdnyYnIfdGBLAt4jwfrrYzclX3acnVy-WqjOWjXNjrI,5710
214
214
  bpy/ops/font/__init__.pyi,sha256=4YuXh-727IWOADXPEqwd1TY9fGPufDl4GHP3pBFX5Mo,17516
@@ -265,7 +265,7 @@ bpy/ops/workspace/__init__.pyi,sha256=F2V6EPwYMrOdtpEoCLHOCk2m8KMdTkcHqO2aEVxcg1
265
265
  bpy/ops/world/__init__.pyi,sha256=imGbkOZ4Z_mNMwg2TwfpPf1DeGiige4UE-vc9991_tk,1032
266
266
  bpy/path/__init__.pyi,sha256=_sJAmwZHhmcIXbchob_87KT_Nyv6R_qrX76gy9IbDRk,11515
267
267
  bpy/props/__init__.pyi,sha256=vJGG9vmfN5MAwjlFMyI6LxKNJAIzPrhgWA4bPz08dQY,29550
268
- bpy/types/__init__.pyi,sha256=QkH95guFMqdWUfGeipxNytUT9ftEzFtQrjj38ni7N_4,5203621
268
+ bpy/types/__init__.pyi,sha256=1GYd-B1CsfHW_LwU7F7a7JxknhQEjsq40LsHGQUjPY8,5203244
269
269
  bpy/utils/__init__.pyi,sha256=j40qxVYp__ZU4OCAG7Vmw9IlI6Tj1yIm3SduACnsu4k,18625
270
270
  bpy/utils/previews/__init__.pyi,sha256=odPazdv-bjKEVpeX-KfaDGZe5rKlMT11zL_q1SgPK3U,4255
271
271
  bpy/utils/units/__init__.pyi,sha256=VVDH7jM3nup8W0XuPIQ0G3TdWN82Ufaw-Rk5JTHVU60,2694
@@ -351,7 +351,7 @@ rna_xml/__init__.pyi,sha256=0qo0Lc6fTAAUSnHNIy0caLHVgK6-hk1havURr61jizM,601
351
351
  rna_xml/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
352
352
  sys_info/__init__.pyi,sha256=9MR_HOycufd8IKZQf-QDqUqE8Aj1D8n_Pfvi9wEKtvo,164
353
353
  sys_info/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
354
- fake_bpy_module-20240621.dist-info/METADATA,sha256=Oq_niN9jNenVQpGsPlCDPq8DP9_lLK45VE_fasPhvNA,7315
355
- fake_bpy_module-20240621.dist-info/WHEEL,sha256=cpQTJ5IWu9CdaPViMhC9YzF8gZuS5-vlfoFihTBC86A,91
356
- fake_bpy_module-20240621.dist-info/top_level.txt,sha256=laOLfHIg0_6N4ntsGrWh85yODawYeLVGI-wex_FGLUI,509
357
- fake_bpy_module-20240621.dist-info/RECORD,,
354
+ fake_bpy_module-20240623.dist-info/METADATA,sha256=bGYAFAB5oVkNADszF-gMzvUlX-IzPMyg4Drp12hxVLE,7194
355
+ fake_bpy_module-20240623.dist-info/WHEEL,sha256=cpQTJ5IWu9CdaPViMhC9YzF8gZuS5-vlfoFihTBC86A,91
356
+ fake_bpy_module-20240623.dist-info/top_level.txt,sha256=laOLfHIg0_6N4ntsGrWh85yODawYeLVGI-wex_FGLUI,509
357
+ fake_bpy_module-20240623.dist-info/RECORD,,