fake-bpy-module 20240701__py3-none-any.whl → 20240702__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_internal/extensions/__init__.pyi +1 -0
- _bpy_internal/extensions/wheel_manager/__init__.pyi +24 -0
- addon_utils/__init__.pyi +1 -0
- bpy/types/__init__.pyi +0 -77
- {fake_bpy_module-20240701.dist-info → fake_bpy_module-20240702.dist-info}/METADATA +1 -1
- {fake_bpy_module-20240701.dist-info → fake_bpy_module-20240702.dist-info}/RECORD +8 -7
- {fake_bpy_module-20240701.dist-info → fake_bpy_module-20240702.dist-info}/WHEEL +1 -1
- {fake_bpy_module-20240701.dist-info → fake_bpy_module-20240702.dist-info}/top_level.txt +0 -0
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import typing
|
|
2
|
+
import collections.abc
|
|
3
|
+
|
|
4
|
+
GenericType1 = typing.TypeVar("GenericType1")
|
|
5
|
+
GenericType2 = typing.TypeVar("GenericType2")
|
|
6
|
+
|
|
7
|
+
def apply_action(local_dir, local_dir_site_packages, wheel_list): ...
|
|
8
|
+
def wheel_list_deduplicate_as_skip_set(wheel_list):
|
|
9
|
+
"""Return all wheel paths to skip."""
|
|
10
|
+
|
|
11
|
+
...
|
|
12
|
+
|
|
13
|
+
def wheel_version_from_filename_for_cmp(filename):
|
|
14
|
+
"""Extract the version number for comparison.
|
|
15
|
+
Note that this only handled the first 3 numbers,
|
|
16
|
+
the trailing text is compared as a string which is not technically correct
|
|
17
|
+
however this is not a priority to support since scripts should only be including stable releases,
|
|
18
|
+
so comparing the first 3 numbers is sufficient. The trailing string is just a tie breaker in the
|
|
19
|
+
unlikely event it differs.If supporting the full spec, comparing: "1.1.dev6" with "1.1.6rc6" for e.g.
|
|
20
|
+
we could support this doesn't seem especially important as extensions should use major releases.
|
|
21
|
+
|
|
22
|
+
"""
|
|
23
|
+
|
|
24
|
+
...
|
addon_utils/__init__.pyi
CHANGED
bpy/types/__init__.pyi
CHANGED
|
@@ -14234,56 +14234,6 @@ from a search field, this can be done using bpy.types.Operator.invoke_search_pop
|
|
|
14234
14234
|
:columns: 2
|
|
14235
14235
|
|
|
14236
14236
|
|
|
14237
|
-
--------------------
|
|
14238
|
-
|
|
14239
|
-
* bpy_struct.id_data
|
|
14240
|
-
* FModifier.name
|
|
14241
|
-
* FModifier.type
|
|
14242
|
-
* FModifier.show_expanded
|
|
14243
|
-
* FModifier.mute
|
|
14244
|
-
* FModifier.is_valid
|
|
14245
|
-
* FModifier.active
|
|
14246
|
-
* FModifier.use_restricted_range
|
|
14247
|
-
* FModifier.frame_start
|
|
14248
|
-
* FModifier.frame_end
|
|
14249
|
-
* FModifier.blend_in
|
|
14250
|
-
* FModifier.blend_out
|
|
14251
|
-
* FModifier.use_influence
|
|
14252
|
-
* FModifier.influence
|
|
14253
|
-
|
|
14254
|
-
:columns: 2
|
|
14255
|
-
|
|
14256
|
-
|
|
14257
|
-
--------------------
|
|
14258
|
-
|
|
14259
|
-
* bpy_struct.as_pointer
|
|
14260
|
-
* bpy_struct.driver_add
|
|
14261
|
-
* bpy_struct.driver_remove
|
|
14262
|
-
* bpy_struct.get
|
|
14263
|
-
* bpy_struct.id_properties_clear
|
|
14264
|
-
* bpy_struct.id_properties_ensure
|
|
14265
|
-
* bpy_struct.id_properties_ui
|
|
14266
|
-
* bpy_struct.is_property_hidden
|
|
14267
|
-
* bpy_struct.is_property_overridable_library
|
|
14268
|
-
* bpy_struct.is_property_readonly
|
|
14269
|
-
* bpy_struct.is_property_set
|
|
14270
|
-
* bpy_struct.items
|
|
14271
|
-
* bpy_struct.keyframe_delete
|
|
14272
|
-
* bpy_struct.keyframe_insert
|
|
14273
|
-
* bpy_struct.keys
|
|
14274
|
-
* bpy_struct.path_from_id
|
|
14275
|
-
* bpy_struct.path_resolve
|
|
14276
|
-
* bpy_struct.pop
|
|
14277
|
-
* bpy_struct.property_overridable_library_set
|
|
14278
|
-
* bpy_struct.property_unset
|
|
14279
|
-
* bpy_struct.type_recast
|
|
14280
|
-
* bpy_struct.values
|
|
14281
|
-
* FModifier.bl_rna_get_subclass
|
|
14282
|
-
* FModifier.bl_rna_get_subclass_py
|
|
14283
|
-
|
|
14284
|
-
:columns: 2
|
|
14285
|
-
|
|
14286
|
-
|
|
14287
14237
|
--------------------
|
|
14288
14238
|
|
|
14289
14239
|
* bpy_struct.id_data
|
|
@@ -159269,33 +159219,6 @@ class FModifierNoise(FModifier, bpy_struct):
|
|
|
159269
159219
|
"""
|
|
159270
159220
|
...
|
|
159271
159221
|
|
|
159272
|
-
class FModifierPython(FModifier, bpy_struct):
|
|
159273
|
-
"""Perform user-defined operation on the modified F-Curve"""
|
|
159274
|
-
|
|
159275
|
-
@classmethod
|
|
159276
|
-
def bl_rna_get_subclass(cls, id: str | None, default=None) -> Struct:
|
|
159277
|
-
"""
|
|
159278
|
-
|
|
159279
|
-
:param id: The RNA type identifier.
|
|
159280
|
-
:type id: str | None
|
|
159281
|
-
:param default:
|
|
159282
|
-
:return: The RNA type or default when not found.
|
|
159283
|
-
:rtype: Struct
|
|
159284
|
-
"""
|
|
159285
|
-
...
|
|
159286
|
-
|
|
159287
|
-
@classmethod
|
|
159288
|
-
def bl_rna_get_subclass_py(cls, id: str | None, default=None) -> typing.Any:
|
|
159289
|
-
"""
|
|
159290
|
-
|
|
159291
|
-
:param id: The RNA type identifier.
|
|
159292
|
-
:type id: str | None
|
|
159293
|
-
:param default:
|
|
159294
|
-
:return: The class or default when not found.
|
|
159295
|
-
:rtype: typing.Any
|
|
159296
|
-
"""
|
|
159297
|
-
...
|
|
159298
|
-
|
|
159299
159222
|
class FModifierStepped(FModifier, bpy_struct):
|
|
159300
159223
|
"""Hold each interpolated value from the F-Curve for several frames without changing the timing"""
|
|
159301
159224
|
|
|
@@ -1,9 +1,10 @@
|
|
|
1
1
|
_bpy_internal/__init__.pyi,sha256=6A2uCagOM3FLZzDdkIsdlnnJ2DgxWcIMtcQ__qCMGjA,181
|
|
2
2
|
_bpy_internal/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
3
|
-
_bpy_internal/extensions/__init__.pyi,sha256=
|
|
3
|
+
_bpy_internal/extensions/__init__.pyi,sha256=OLJB-WBHa1wKGqiQ0SdegEGGOIJPt086nSNaU1zO5mA,188
|
|
4
4
|
_bpy_internal/extensions/junction_module/__init__.pyi,sha256=Y4wWyDVpNoWmMjPLBtwA2x3WWTLInpvA-ZE6h_qO0SE,1084
|
|
5
|
+
_bpy_internal/extensions/wheel_manager/__init__.pyi,sha256=y9wUp2eal3aTmw2aXKaHAiZ8Vd_qmkLKNJp9Gk4ZUnY,966
|
|
5
6
|
_bpy_internal/freedesktop/__init__.pyi,sha256=Q9rj2oTgTavt1KGhDB3vipL5nJ1WDLYwsWuae1GzV5U,858
|
|
6
|
-
addon_utils/__init__.pyi,sha256=
|
|
7
|
+
addon_utils/__init__.pyi,sha256=N2gc15myI2CN4pe_wyW_2W96CddCb9t0asAiGJZQ1BE,1972
|
|
7
8
|
addon_utils/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
8
9
|
animsys_refactor/__init__.pyi,sha256=lZA8a5Poe0YPqbjRFL6jgJ22YQm-yolRNftHG9uO53Q,723
|
|
9
10
|
animsys_refactor/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -267,7 +268,7 @@ bpy/ops/workspace/__init__.pyi,sha256=F2V6EPwYMrOdtpEoCLHOCk2m8KMdTkcHqO2aEVxcg1
|
|
|
267
268
|
bpy/ops/world/__init__.pyi,sha256=imGbkOZ4Z_mNMwg2TwfpPf1DeGiige4UE-vc9991_tk,1032
|
|
268
269
|
bpy/path/__init__.pyi,sha256=_sJAmwZHhmcIXbchob_87KT_Nyv6R_qrX76gy9IbDRk,11515
|
|
269
270
|
bpy/props/__init__.pyi,sha256=vJGG9vmfN5MAwjlFMyI6LxKNJAIzPrhgWA4bPz08dQY,29550
|
|
270
|
-
bpy/types/__init__.pyi,sha256=
|
|
271
|
+
bpy/types/__init__.pyi,sha256=2kOl9ow8QwjmheeLrmhKFQodS4oeQXaAj_Bp3UkCQVs,5209039
|
|
271
272
|
bpy/utils/__init__.pyi,sha256=u27SmrQE6At5bOTU-lCuwbT82HCj_lPAvs5QHnlGGY4,19071
|
|
272
273
|
bpy/utils/previews/__init__.pyi,sha256=odPazdv-bjKEVpeX-KfaDGZe5rKlMT11zL_q1SgPK3U,4255
|
|
273
274
|
bpy/utils/units/__init__.pyi,sha256=VVDH7jM3nup8W0XuPIQ0G3TdWN82Ufaw-Rk5JTHVU60,2694
|
|
@@ -351,7 +352,7 @@ rna_xml/__init__.pyi,sha256=DggMfFZZ2UqOHPcPNpvMOFDSBGUnCegQxcljQIknRNs,639
|
|
|
351
352
|
rna_xml/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
352
353
|
sys_info/__init__.pyi,sha256=9MR_HOycufd8IKZQf-QDqUqE8Aj1D8n_Pfvi9wEKtvo,164
|
|
353
354
|
sys_info/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
354
|
-
fake_bpy_module-
|
|
355
|
-
fake_bpy_module-
|
|
356
|
-
fake_bpy_module-
|
|
357
|
-
fake_bpy_module-
|
|
355
|
+
fake_bpy_module-20240702.dist-info/METADATA,sha256=iOKN2uL7pyF1-8LoddgmJihv3QojiE-4ea1iYfFxXRI,7194
|
|
356
|
+
fake_bpy_module-20240702.dist-info/WHEEL,sha256=y4mX-SOX4fYIkonsAGA5N0Oy-8_gI4FXw5HNI1xqvWg,91
|
|
357
|
+
fake_bpy_module-20240702.dist-info/top_level.txt,sha256=laOLfHIg0_6N4ntsGrWh85yODawYeLVGI-wex_FGLUI,509
|
|
358
|
+
fake_bpy_module-20240702.dist-info/RECORD,,
|
|
File without changes
|