fake-bpy-module 20250128__py3-none-any.whl → 20250130__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.
- bl_operators/node/__init__.pyi +78 -0
- bpy/_typing/rna_enums/__init__.pyi +3 -3
- bpy/ops/node/__init__.pyi +30 -0
- bpy/ops/wm/__init__.pyi +2 -2
- bpy/types/__init__.pyi +13 -3
- bpy/utils/__init__.pyi +4 -2
- {fake_bpy_module-20250128.dist-info → fake_bpy_module-20250130.dist-info}/METADATA +1 -1
- {fake_bpy_module-20250128.dist-info → fake_bpy_module-20250130.dist-info}/RECORD +10 -10
- {fake_bpy_module-20250128.dist-info → fake_bpy_module-20250130.dist-info}/WHEEL +0 -0
- {fake_bpy_module-20250128.dist-info → fake_bpy_module-20250130.dist-info}/top_level.txt +0 -0
bl_operators/node/__init__.pyi
CHANGED
|
@@ -322,6 +322,84 @@ class NODE_OT_tree_path_parent(bpy.types.Operator):
|
|
|
322
322
|
:param context:
|
|
323
323
|
"""
|
|
324
324
|
|
|
325
|
+
class NODE_OT_viewer_shortcut_get(bpy.types.Operator):
|
|
326
|
+
"""Activate a specific compositor viewer node using 1,2,..,9 keys"""
|
|
327
|
+
|
|
328
|
+
bl_idname: typing.Any
|
|
329
|
+
bl_label: typing.Any
|
|
330
|
+
bl_options: typing.Any
|
|
331
|
+
bl_rna: typing.Any
|
|
332
|
+
id_data: typing.Any
|
|
333
|
+
|
|
334
|
+
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
335
|
+
"""
|
|
336
|
+
|
|
337
|
+
:return: The RNA type or default when not found.
|
|
338
|
+
:rtype: bpy.types.Struct
|
|
339
|
+
"""
|
|
340
|
+
|
|
341
|
+
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
342
|
+
"""
|
|
343
|
+
|
|
344
|
+
:return: The class or default when not found.
|
|
345
|
+
:rtype: typing.Any
|
|
346
|
+
"""
|
|
347
|
+
|
|
348
|
+
def execute(self, context):
|
|
349
|
+
"""
|
|
350
|
+
|
|
351
|
+
:param context:
|
|
352
|
+
"""
|
|
353
|
+
|
|
354
|
+
@classmethod
|
|
355
|
+
def poll(cls, context):
|
|
356
|
+
"""
|
|
357
|
+
|
|
358
|
+
:param context:
|
|
359
|
+
"""
|
|
360
|
+
|
|
361
|
+
class NODE_OT_viewer_shortcut_set(bpy.types.Operator):
|
|
362
|
+
"""Create a compositor viewer shortcut for the selected node by pressing ctrl+1,2,..9"""
|
|
363
|
+
|
|
364
|
+
bl_idname: typing.Any
|
|
365
|
+
bl_label: typing.Any
|
|
366
|
+
bl_options: typing.Any
|
|
367
|
+
bl_rna: typing.Any
|
|
368
|
+
id_data: typing.Any
|
|
369
|
+
|
|
370
|
+
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
371
|
+
"""
|
|
372
|
+
|
|
373
|
+
:return: The RNA type or default when not found.
|
|
374
|
+
:rtype: bpy.types.Struct
|
|
375
|
+
"""
|
|
376
|
+
|
|
377
|
+
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
378
|
+
"""
|
|
379
|
+
|
|
380
|
+
:return: The class or default when not found.
|
|
381
|
+
:rtype: typing.Any
|
|
382
|
+
"""
|
|
383
|
+
|
|
384
|
+
def execute(self, context):
|
|
385
|
+
"""
|
|
386
|
+
|
|
387
|
+
:param context:
|
|
388
|
+
"""
|
|
389
|
+
|
|
390
|
+
def get_connected_viewer(self, node):
|
|
391
|
+
"""
|
|
392
|
+
|
|
393
|
+
:param node:
|
|
394
|
+
"""
|
|
395
|
+
|
|
396
|
+
@classmethod
|
|
397
|
+
def poll(cls, context):
|
|
398
|
+
"""
|
|
399
|
+
|
|
400
|
+
:param context:
|
|
401
|
+
"""
|
|
402
|
+
|
|
325
403
|
class NodeAddOperator:
|
|
326
404
|
def create_node(self, context, node_type):
|
|
327
405
|
"""
|
|
@@ -2023,9 +2023,9 @@ type NodeClampItems = typing.Literal[
|
|
|
2023
2023
|
"RANGE", # Range.Constrain value between min and max, swapping arguments when min > max.
|
|
2024
2024
|
]
|
|
2025
2025
|
type NodeCombsepColorItems = typing.Literal[
|
|
2026
|
-
"RGB", # RGB.Use RGB color processing.
|
|
2027
|
-
"HSV", # HSV.Use HSV color processing.
|
|
2028
|
-
"HSL", # HSL.Use HSL color processing.
|
|
2026
|
+
"RGB", # RGB.Use RGB (Red, Green, Blue) color processing.
|
|
2027
|
+
"HSV", # HSV.Use HSV (Hue, Saturation, Value) color processing.
|
|
2028
|
+
"HSL", # HSL.Use HSL (Hue, Saturation, Lightness) color processing.
|
|
2029
2029
|
]
|
|
2030
2030
|
type NodeCompareOperationItems = typing.Literal[
|
|
2031
2031
|
"LESS_THAN", # Less Than.True when the first input is smaller than second input.
|
bpy/ops/node/__init__.pyi
CHANGED
|
@@ -1701,3 +1701,33 @@ def viewer_border(
|
|
|
1701
1701
|
:param wait_for_input: Wait for Input
|
|
1702
1702
|
:type wait_for_input: bool | None
|
|
1703
1703
|
"""
|
|
1704
|
+
|
|
1705
|
+
def viewer_shortcut_get(
|
|
1706
|
+
execution_context: int | str | None = None,
|
|
1707
|
+
undo: bool | None = None,
|
|
1708
|
+
/,
|
|
1709
|
+
*,
|
|
1710
|
+
viewer_index: int | None = 0,
|
|
1711
|
+
):
|
|
1712
|
+
"""Activate a specific compositor viewer node using 1,2,..,9 keys
|
|
1713
|
+
|
|
1714
|
+
:type execution_context: int | str | None
|
|
1715
|
+
:type undo: bool | None
|
|
1716
|
+
:param viewer_index: Viewer Index, Index corresponding to the shortcut, e.g. number key 1 corresponds to index 1 etc..
|
|
1717
|
+
:type viewer_index: int | None
|
|
1718
|
+
"""
|
|
1719
|
+
|
|
1720
|
+
def viewer_shortcut_set(
|
|
1721
|
+
execution_context: int | str | None = None,
|
|
1722
|
+
undo: bool | None = None,
|
|
1723
|
+
/,
|
|
1724
|
+
*,
|
|
1725
|
+
viewer_index: int | None = 0,
|
|
1726
|
+
):
|
|
1727
|
+
"""Create a compositor viewer shortcut for the selected node by pressing ctrl+1,2,..9
|
|
1728
|
+
|
|
1729
|
+
:type execution_context: int | str | None
|
|
1730
|
+
:type undo: bool | None
|
|
1731
|
+
:param viewer_index: Viewer Index, Index corresponding to the shortcut, e.g. number key 1 corresponds to index 1 etc..
|
|
1732
|
+
:type viewer_index: int | None
|
|
1733
|
+
"""
|
bpy/ops/wm/__init__.pyi
CHANGED
|
@@ -5157,7 +5157,7 @@ def usd_export(
|
|
|
5157
5157
|
:type custom_properties_namespace: str
|
|
5158
5158
|
:param author_blender_name: Blender Names, Author USD custom attributes containing the original Blender object and object data names
|
|
5159
5159
|
:type author_blender_name: bool | None
|
|
5160
|
-
:param convert_world_material:
|
|
5160
|
+
:param convert_world_material: World Dome Light, Convert the world material to a USD dome light. Currently works for simple materials, consisting of an environment texture connected to a background shader, with an optional vector multiply of the texture color
|
|
5161
5161
|
:type convert_world_material: bool | None
|
|
5162
5162
|
:param allow_unicode: Allow Unicode, Preserve UTF-8 encoded characters when writing USD prim and property names (requires software utilizing USD 24.03 or greater when opening the resulting files)
|
|
5163
5163
|
:type allow_unicode: bool | None
|
|
@@ -5481,7 +5481,7 @@ def usd_import(
|
|
|
5481
5481
|
:type attr_import_mode: typing.Literal['NONE','USER','ALL'] | None
|
|
5482
5482
|
:param validate_meshes: Validate Meshes, Ensure the data is valid (when disabled, data may be imported which causes crashes displaying or editing)
|
|
5483
5483
|
:type validate_meshes: bool | None
|
|
5484
|
-
:param create_world_material:
|
|
5484
|
+
:param create_world_material: World Dome Light, Convert the first discovered USD dome light to a world background shader
|
|
5485
5485
|
:type create_world_material: bool | None
|
|
5486
5486
|
:param import_defined_only: Defined Primitives Only, Import only defined USD primitives. When disabled this allows importing USD primitives which are not defined, such as those with an override specifier
|
|
5487
5487
|
:type import_defined_only: bool | None
|
bpy/types/__init__.pyi
CHANGED
|
@@ -104026,11 +104026,11 @@ class bpy_prop_collection[_GenericType1]:
|
|
|
104026
104026
|
class bpy_prop_collection_idprop[_GenericType1]:
|
|
104027
104027
|
"""built-in class used for user defined collections."""
|
|
104028
104028
|
|
|
104029
|
-
def add(self) ->
|
|
104029
|
+
def add(self) -> _GenericType1:
|
|
104030
104030
|
"""This is a function to add a new item to a collection.
|
|
104031
104031
|
|
|
104032
104032
|
:return: A newly created item.
|
|
104033
|
-
:rtype:
|
|
104033
|
+
:rtype: _GenericType1
|
|
104034
104034
|
"""
|
|
104035
104035
|
|
|
104036
104036
|
def clear(self):
|
|
@@ -131842,6 +131842,12 @@ class CompositorNodeVecBlur(CompositorNode, NodeInternal, Node, bpy_struct):
|
|
|
131842
131842
|
class CompositorNodeViewer(CompositorNode, NodeInternal, Node, bpy_struct):
|
|
131843
131843
|
"""Visualize data from inside a node graph, in the image editor or as a backdrop"""
|
|
131844
131844
|
|
|
131845
|
+
ui_shortcut: int
|
|
131846
|
+
"""
|
|
131847
|
+
|
|
131848
|
+
:type: int
|
|
131849
|
+
"""
|
|
131850
|
+
|
|
131845
131851
|
use_alpha: bool
|
|
131846
131852
|
""" Colors are treated alpha premultiplied, or colors output straight (alpha gets set to 1)
|
|
131847
131853
|
|
|
@@ -197743,7 +197749,7 @@ class Scene(ID, bpy_struct):
|
|
|
197743
197749
|
"""
|
|
197744
197750
|
|
|
197745
197751
|
def frame_set(self, frame: int | None, *, subframe: float | None = 0.0):
|
|
197746
|
-
"""Set scene frame updating all objects immediately
|
|
197752
|
+
"""Set scene frame updating all objects and view layers immediately
|
|
197747
197753
|
|
|
197748
197754
|
:param frame: Frame number to set
|
|
197749
197755
|
:type frame: int | None
|
|
@@ -234018,6 +234024,10 @@ NODE_OT_interface_item_remove: bl_operators.node.NODE_OT_interface_item_remove
|
|
|
234018
234024
|
|
|
234019
234025
|
NODE_OT_tree_path_parent: bl_operators.node.NODE_OT_tree_path_parent
|
|
234020
234026
|
|
|
234027
|
+
NODE_OT_viewer_shortcut_get: bl_operators.node.NODE_OT_viewer_shortcut_get
|
|
234028
|
+
|
|
234029
|
+
NODE_OT_viewer_shortcut_set: bl_operators.node.NODE_OT_viewer_shortcut_set
|
|
234030
|
+
|
|
234021
234031
|
NODE_PT_active_node_color: bl_ui.space_node.NODE_PT_active_node_color
|
|
234022
234032
|
|
|
234023
234033
|
NODE_PT_active_node_generic: bl_ui.space_node.NODE_PT_active_node_generic
|
bpy/utils/__init__.pyi
CHANGED
|
@@ -198,12 +198,13 @@ def register_class(
|
|
|
198
198
|
| bpy.types.AssetShelf
|
|
199
199
|
| bpy.types.FileHandler
|
|
200
200
|
| bpy.types.PropertyGroup
|
|
201
|
+
| bpy.types.AddonPreferences
|
|
201
202
|
],
|
|
202
203
|
):
|
|
203
204
|
"""Register a subclass of a Blender type class.
|
|
204
205
|
|
|
205
206
|
:param cls: Registerable Blender class type.
|
|
206
|
-
:type cls: type[bpy.types.Panel | bpy.types.UIList | bpy.types.Menu | bpy.types.Header | bpy.types.Operator | bpy.types.KeyingSetInfo | bpy.types.RenderEngine | bpy.types.AssetShelf | bpy.types.FileHandler | bpy.types.PropertyGroup]
|
|
207
|
+
:type cls: type[bpy.types.Panel | bpy.types.UIList | bpy.types.Menu | bpy.types.Header | bpy.types.Operator | bpy.types.KeyingSetInfo | bpy.types.RenderEngine | bpy.types.AssetShelf | bpy.types.FileHandler | bpy.types.PropertyGroup | bpy.types.AddonPreferences]
|
|
207
208
|
"""
|
|
208
209
|
|
|
209
210
|
def register_classes_factory(classes):
|
|
@@ -387,6 +388,7 @@ def unregister_class(
|
|
|
387
388
|
| bpy.types.AssetShelf
|
|
388
389
|
| bpy.types.FileHandler
|
|
389
390
|
| bpy.types.PropertyGroup
|
|
391
|
+
| bpy.types.AddonPreferences
|
|
390
392
|
],
|
|
391
393
|
):
|
|
392
394
|
"""Unload the Python class from blender.
|
|
@@ -394,7 +396,7 @@ def unregister_class(
|
|
|
394
396
|
:param cls: Blender type class,
|
|
395
397
|
see `bpy.utils.register_class` for classes which can
|
|
396
398
|
be registered.
|
|
397
|
-
:type cls: type[bpy.types.Panel | bpy.types.UIList | bpy.types.Menu | bpy.types.Header | bpy.types.Operator | bpy.types.KeyingSetInfo | bpy.types.RenderEngine | bpy.types.AssetShelf | bpy.types.FileHandler | bpy.types.PropertyGroup]
|
|
399
|
+
:type cls: type[bpy.types.Panel | bpy.types.UIList | bpy.types.Menu | bpy.types.Header | bpy.types.Operator | bpy.types.KeyingSetInfo | bpy.types.RenderEngine | bpy.types.AssetShelf | bpy.types.FileHandler | bpy.types.PropertyGroup | bpy.types.AddonPreferences]
|
|
398
400
|
"""
|
|
399
401
|
|
|
400
402
|
def unregister_cli_command(handle):
|
|
@@ -69,7 +69,7 @@ bl_operators/geometry_nodes/__init__.pyi,sha256=h0mxRrKeb6_NoRZJUENU2aj_WiN3SHUN
|
|
|
69
69
|
bl_operators/image/__init__.pyi,sha256=YNHvnRdvl9z5DBqDRR23PpFgA94TshQfexGmyYbyzK0,3436
|
|
70
70
|
bl_operators/image_as_planes/__init__.pyi,sha256=msyQ3WObip0mOUVflYsSpneXxgBNKZs_QIPIQDJjuFg,4556
|
|
71
71
|
bl_operators/mesh/__init__.pyi,sha256=jdyChlzXgKrhiw9ROSf8o7YFi3L40p4dBGfTn-vAshU,2412
|
|
72
|
-
bl_operators/node/__init__.pyi,sha256=
|
|
72
|
+
bl_operators/node/__init__.pyi,sha256=8J5P2UkShdfiK18ZJaZTzXNiCbTE8PLDgJPBUDjK8AA,10316
|
|
73
73
|
bl_operators/node_editor/__init__.pyi,sha256=YI0O4rr9UH6VJ4rkOUE55YwqteSKLutqZ5SZQvKD7pA,109
|
|
74
74
|
bl_operators/node_editor/node_functions/__init__.pyi,sha256=8EfnI7vkBtnn2CxIdhEHBEHCzUjI5F6r3wgMoWPo2Dc,527
|
|
75
75
|
bl_operators/object/__init__.pyi,sha256=2MCam5rUDHiwmbRk-vRt6O5xUvdl2kmJYITxR1-IQ4U,11516
|
|
@@ -191,7 +191,7 @@ bmesh/utils/__init__.pyi,sha256=XNhFTqYQPL7ZUvljUTQkN0X_3YCS_RyrOgEzqrQZiDg,6235
|
|
|
191
191
|
bpy/__init__.pyi,sha256=KeQc-X1TjhtunVxLDy0IK0cMmurLmAQm4fX_D__UPJo,464
|
|
192
192
|
bpy/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
193
193
|
bpy/_typing/__init__.pyi,sha256=7bioadpQS-8UKR8TdY1m4MqUFqKVy8h13sPIt28ZUqs,99
|
|
194
|
-
bpy/_typing/rna_enums/__init__.pyi,sha256=
|
|
194
|
+
bpy/_typing/rna_enums/__init__.pyi,sha256=WeU_5jwP5G5xPFkCyKfV2zsXtH5WsasE7I3qlrj48WU,138692
|
|
195
195
|
bpy/app/__init__.pyi,sha256=s6DxbRrXGzFTpAIeczXT4DiCPzeYAKldZFZk4uVR5Yg,8740
|
|
196
196
|
bpy/app/handlers/__init__.pyi,sha256=Gxao8v-gF10WpVRUdswsB4QndzHjO1UtymwrorJef-4,6911
|
|
197
197
|
bpy/app/icons/__init__.pyi,sha256=w18Xn9y0T54WlpHyhC3_y8a3Lq9kuo3U72Bu7wOY41A,928
|
|
@@ -241,7 +241,7 @@ bpy/ops/material/__init__.pyi,sha256=8AhfpDXsCDLZI0UEESadmN8-zfNGEiDblmKobSJLcqA
|
|
|
241
241
|
bpy/ops/mball/__init__.pyi,sha256=VRZZbMhoN6OWmsG-344hmoHQ-_qcjRuisuzJvLxGobI,4155
|
|
242
242
|
bpy/ops/mesh/__init__.pyi,sha256=qE1RpDdjx6k30pAjr1ZWqjR4aoY6_qJ8VVyQk0F8GPA,132596
|
|
243
243
|
bpy/ops/nla/__init__.pyi,sha256=qWBmb8nOy9c6H_rKEjt3spO-TnwPaqJc1meOgDy5uaY,18145
|
|
244
|
-
bpy/ops/node/__init__.pyi,sha256=
|
|
244
|
+
bpy/ops/node/__init__.pyi,sha256=QOa13EAEyS_cTuOu4SzX841cdd142EhKhyPtCywjGlg,52976
|
|
245
245
|
bpy/ops/object/__init__.pyi,sha256=r-chJkYsfu2ZUp4KBcamnBl7Od4_LW5zJ76e45lc8u0,168021
|
|
246
246
|
bpy/ops/outliner/__init__.pyi,sha256=la079qCOhk_Bf_FiEtjcNh0jP97X0sY5aPgnAxOT4x0,27743
|
|
247
247
|
bpy/ops/paint/__init__.pyi,sha256=Q-EnWEXXc_RyYXxGY0x4zTQbmNwd4HOaPxashYEWwpk,37665
|
|
@@ -272,13 +272,13 @@ bpy/ops/uilist/__init__.pyi,sha256=1Vu7qHRYL-MOM5kdcHJLmJwucvveh10t1wbmL_98GEM,1
|
|
|
272
272
|
bpy/ops/uv/__init__.pyi,sha256=_PFdsIxNsw5RLzCHmpqA7MnHriWUf0mau2pvYSyj7DQ,45436
|
|
273
273
|
bpy/ops/view2d/__init__.pyi,sha256=bw6xoLUDUWQGk36g4T8THDWpNSH_VX8Pyg_mlGB9Dik,6986
|
|
274
274
|
bpy/ops/view3d/__init__.pyi,sha256=MGiNsaGKtQPLFiSQgEdKlULq2a0Rp6W3vGTub0Hb3p4,30689
|
|
275
|
-
bpy/ops/wm/__init__.pyi,sha256=
|
|
275
|
+
bpy/ops/wm/__init__.pyi,sha256=j7hlRICQ5pqYjsgTQPkJozhTMs4EMBzG6XbGjuLrzDk,215926
|
|
276
276
|
bpy/ops/workspace/__init__.pyi,sha256=BHvDV5CcVBnuKaL8akhm-Es7VcGUjf3jGFTbfx5YHCU,1983
|
|
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=
|
|
281
|
-
bpy/utils/__init__.pyi,sha256=
|
|
280
|
+
bpy/types/__init__.pyi,sha256=MG9wNzTgv-tEMJ8A6Cf4NTkyFN47FQ_FGUZHZgOPK0c,5422786
|
|
281
|
+
bpy/utils/__init__.pyi,sha256=Dwq7WFMz4vZM6bcYjsWYj9mYm1SDnqESf0d0UPX4xPE,14897
|
|
282
282
|
bpy/utils/previews/__init__.pyi,sha256=AsbDN4vRLbSTZ7_S_4LqmI1sJmV_8NnqDt1QfBdH94Y,2280
|
|
283
283
|
bpy/utils/units/__init__.pyi,sha256=QuXx22JjmObRmP_KcdoqOlDSvVtXZHeK5nTIvwjcUnI,2645
|
|
284
284
|
bpy_extras/__init__.pyi,sha256=wejK55NeAEGsAzM9psNhBokX9H0DBihwOdNQ5XlCHB4,968
|
|
@@ -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-
|
|
363
|
-
fake_bpy_module-
|
|
364
|
-
fake_bpy_module-
|
|
365
|
-
fake_bpy_module-
|
|
362
|
+
fake_bpy_module-20250130.dist-info/METADATA,sha256=hwKtvNakffHikKhhoFJoMhIg1DSiplj4hARZRHQ_8jw,7289
|
|
363
|
+
fake_bpy_module-20250130.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
|
|
364
|
+
fake_bpy_module-20250130.dist-info/top_level.txt,sha256=SZm3DVRKif7dFSjYKiIIg3_7uqjIwRAwOnCIcT4hRNM,500
|
|
365
|
+
fake_bpy_module-20250130.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|