fake-bpy-module 20240804__py3-none-any.whl → 20240806__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/stale_file_manager/__init__.pyi +39 -0
- _bpy_internal/extensions/wheel_manager/__init__.pyi +3 -1
- addon_utils/__init__.pyi +2 -0
- bpy/types/__init__.pyi +940 -260
- {fake_bpy_module-20240804.dist-info → fake_bpy_module-20240806.dist-info}/METADATA +1 -1
- {fake_bpy_module-20240804.dist-info → fake_bpy_module-20240806.dist-info}/RECORD +9 -8
- {fake_bpy_module-20240804.dist-info → fake_bpy_module-20240806.dist-info}/WHEEL +0 -0
- {fake_bpy_module-20240804.dist-info → fake_bpy_module-20240806.dist-info}/top_level.txt +0 -0
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
import typing
|
|
2
|
+
import collections.abc
|
|
3
|
+
import typing_extensions
|
|
4
|
+
|
|
5
|
+
GenericType1 = typing.TypeVar("GenericType1")
|
|
6
|
+
GenericType2 = typing.TypeVar("GenericType2")
|
|
7
|
+
|
|
8
|
+
class StaleFiles:
|
|
9
|
+
def filepath_add(self, path_abs, *, rename):
|
|
10
|
+
"""
|
|
11
|
+
|
|
12
|
+
:param path_abs:
|
|
13
|
+
:param rename:
|
|
14
|
+
"""
|
|
15
|
+
...
|
|
16
|
+
|
|
17
|
+
def is_empty(self): ...
|
|
18
|
+
def is_modified(self): ...
|
|
19
|
+
def state_load(self, *, check_exists):
|
|
20
|
+
"""
|
|
21
|
+
|
|
22
|
+
:param check_exists:
|
|
23
|
+
"""
|
|
24
|
+
...
|
|
25
|
+
|
|
26
|
+
def state_load_add_and_store(self, *, paths):
|
|
27
|
+
"""
|
|
28
|
+
|
|
29
|
+
:param paths:
|
|
30
|
+
"""
|
|
31
|
+
...
|
|
32
|
+
|
|
33
|
+
def state_remove_all(self): ...
|
|
34
|
+
def state_store(self, *, check_exists):
|
|
35
|
+
"""
|
|
36
|
+
|
|
37
|
+
:param check_exists:
|
|
38
|
+
"""
|
|
39
|
+
...
|
|
@@ -5,7 +5,9 @@ import typing_extensions
|
|
|
5
5
|
GenericType1 = typing.TypeVar("GenericType1")
|
|
6
6
|
GenericType2 = typing.TypeVar("GenericType2")
|
|
7
7
|
|
|
8
|
-
def apply_action(
|
|
8
|
+
def apply_action(
|
|
9
|
+
*, local_dir, local_dir_site_packages, wheel_list, remove_error_fn, debug
|
|
10
|
+
): ...
|
|
9
11
|
def wheel_list_deduplicate_as_skip_set(wheel_list):
|
|
10
12
|
"""Return all wheel paths to skip."""
|
|
11
13
|
|