orionis 0.294.0__py3-none-any.whl → 0.296.0__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.
- orionis/metadata/framework.py +1 -1
- orionis/services/introspection/dependencies/contracts/reflect_dependencies.py +19 -13
- orionis/services/introspection/dependencies/entities/class_dependencies.py +24 -12
- orionis/services/introspection/dependencies/entities/method_dependencies.py +26 -13
- orionis/services/introspection/dependencies/entities/resolved_dependencies.py +31 -18
- orionis/services/introspection/dependencies/reflect_dependencies.py +5 -4
- orionis/services/introspection/exceptions/reflection_type_error.py +26 -0
- orionis/services/introspection/exceptions/reflection_value_error.py +26 -0
- orionis/test/suites/test_suite.py +1 -0
- {orionis-0.294.0.dist-info → orionis-0.296.0.dist-info}/METADATA +1 -1
- {orionis-0.294.0.dist-info → orionis-0.296.0.dist-info}/RECORD +15 -14
- orionis/services/introspection/exceptions/types.py +0 -0
- {orionis-0.294.0.dist-info → orionis-0.296.0.dist-info}/WHEEL +0 -0
- {orionis-0.294.0.dist-info → orionis-0.296.0.dist-info}/licenses/LICENCE +0 -0
- {orionis-0.294.0.dist-info → orionis-0.296.0.dist-info}/top_level.txt +0 -0
- {orionis-0.294.0.dist-info → orionis-0.296.0.dist-info}/zip-safe +0 -0
orionis/metadata/framework.py
CHANGED
@@ -4,40 +4,46 @@ from orionis.services.introspection.dependencies.entities.method_dependencies im
|
|
4
4
|
|
5
5
|
class IReflectDependencies(ABC):
|
6
6
|
"""
|
7
|
-
|
8
|
-
"""
|
7
|
+
Interface for reflecting dependencies of a given object.
|
9
8
|
|
10
|
-
|
11
|
-
|
9
|
+
This interface provides methods to retrieve both resolved and unresolved
|
10
|
+
dependencies from the constructor and methods of a class.
|
11
|
+
"""
|
12
12
|
|
13
13
|
@abstractmethod
|
14
14
|
def getConstructorDependencies(self) -> ClassDependency:
|
15
15
|
"""
|
16
|
-
|
16
|
+
Retrieve dependencies from the constructor of the instance's class.
|
17
17
|
|
18
18
|
Returns
|
19
19
|
-------
|
20
20
|
ClassDependency
|
21
|
-
|
22
|
-
|
23
|
-
-
|
21
|
+
Structured representation of the constructor dependencies.
|
22
|
+
|
23
|
+
- resolved : dict
|
24
|
+
Dictionary of resolved dependencies with their names and values.
|
25
|
+
- unresolved : list
|
26
|
+
List of unresolved dependencies (parameter names without default values or annotations).
|
24
27
|
"""
|
25
28
|
pass
|
26
29
|
|
27
30
|
def getMethodDependencies(self, method_name: str) -> MethodDependency:
|
28
31
|
"""
|
29
|
-
|
32
|
+
Retrieve dependencies from a method of the instance's class.
|
30
33
|
|
31
34
|
Parameters
|
32
35
|
----------
|
33
36
|
method_name : str
|
34
|
-
|
37
|
+
Name of the method to inspect.
|
35
38
|
|
36
39
|
Returns
|
37
40
|
-------
|
38
41
|
MethodDependency
|
39
|
-
|
40
|
-
|
41
|
-
-
|
42
|
+
Structured representation of the method dependencies.
|
43
|
+
|
44
|
+
- resolved : dict
|
45
|
+
Dictionary of resolved dependencies with their names and values.
|
46
|
+
- unresolved : list
|
47
|
+
List of unresolved dependencies (parameter names without default values or annotations).
|
42
48
|
"""
|
43
49
|
pass
|
@@ -1,19 +1,28 @@
|
|
1
1
|
from dataclasses import dataclass
|
2
2
|
from typing import Any, Dict, List
|
3
3
|
from orionis.services.introspection.dependencies.entities.resolved_dependencies import ResolvedDependency
|
4
|
+
from orionis.services.introspection.exceptions.reflection_type_error import ReflectionTypeError
|
4
5
|
|
5
6
|
@dataclass(frozen=True, kw_only=True)
|
6
7
|
class ClassDependency:
|
7
8
|
"""
|
8
9
|
Represents the dependencies of a class, separating resolved and unresolved dependencies.
|
9
10
|
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
11
|
+
Parameters
|
12
|
+
----------
|
13
|
+
resolved : Dict[ResolvedDependency, Any]
|
14
|
+
A dictionary mapping resolved dependency descriptors to their corresponding resolved instances or values.
|
15
|
+
All keys must be ResolvedDependency instances.
|
16
|
+
unresolved : List[str]
|
17
|
+
A list of dependency names or identifiers that could not be resolved.
|
18
|
+
Must contain only strings.
|
19
|
+
|
20
|
+
Attributes
|
21
|
+
----------
|
22
|
+
resolved : Dict[ResolvedDependency, Any]
|
23
|
+
Dictionary of resolved dependencies.
|
24
|
+
unresolved : List[str]
|
25
|
+
List of unresolved dependency names.
|
17
26
|
"""
|
18
27
|
resolved: Dict[ResolvedDependency, Any]
|
19
28
|
unresolved: List[str]
|
@@ -22,20 +31,23 @@ class ClassDependency:
|
|
22
31
|
"""
|
23
32
|
Validates types of attributes during initialization.
|
24
33
|
|
25
|
-
Raises
|
26
|
-
|
34
|
+
Raises
|
35
|
+
------
|
36
|
+
ReflectionTypeError
|
37
|
+
If types don't match the expected:
|
27
38
|
- resolved: Dict[ResolvedDependency, Any]
|
28
39
|
- unresolved: List[str]
|
29
|
-
|
40
|
+
ValueError
|
41
|
+
If resolved contains None keys or unresolved contains empty strings.
|
30
42
|
"""
|
31
43
|
# Validate 'resolved' is a dict with ResolvedDependency keys
|
32
44
|
if not isinstance(self.resolved, dict):
|
33
|
-
raise
|
45
|
+
raise ReflectionTypeError(
|
34
46
|
f"'resolved' must be a dict, got {type(self.resolved).__name__}"
|
35
47
|
)
|
36
48
|
|
37
49
|
# Validate 'unresolved' is a list of non-empty strings
|
38
50
|
if not isinstance(self.unresolved, list):
|
39
|
-
raise
|
51
|
+
raise ReflectionTypeError(
|
40
52
|
f"'unresolved' must be a list, got {type(self.unresolved).__name__}"
|
41
53
|
)
|
@@ -1,20 +1,30 @@
|
|
1
1
|
from dataclasses import dataclass
|
2
2
|
from typing import Any, Dict, List
|
3
3
|
from orionis.services.introspection.dependencies.entities.resolved_dependencies import ResolvedDependency
|
4
|
+
from orionis.services.introspection.exceptions.reflection_type_error import ReflectionTypeError
|
4
5
|
|
5
6
|
@dataclass(frozen=True, kw_only=True)
|
6
7
|
class MethodDependency:
|
7
8
|
"""
|
8
9
|
Represents the dependencies of a method, separating resolved and unresolved dependencies.
|
9
10
|
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
11
|
+
Parameters
|
12
|
+
----------
|
13
|
+
resolved : Dict[ResolvedDependency, Any]
|
14
|
+
A dictionary mapping resolved dependency descriptors to their corresponding
|
15
|
+
resolved instances or values for the method. All keys must be ResolvedDependency instances.
|
16
|
+
unresolved : List[str]
|
17
|
+
A list of method parameter names or dependency identifiers that could not be resolved.
|
18
|
+
Must contain only non-empty strings.
|
19
|
+
|
20
|
+
Raises
|
21
|
+
------
|
22
|
+
ReflectionTypeError
|
23
|
+
If types don't match the expected:
|
24
|
+
- resolved: Dict[ResolvedDependency, Any]
|
25
|
+
- unresolved: List[str]
|
26
|
+
ValueError
|
27
|
+
If resolved contains None keys or unresolved contains empty strings
|
18
28
|
"""
|
19
29
|
resolved: Dict[ResolvedDependency, Any]
|
20
30
|
unresolved: List[str]
|
@@ -23,20 +33,23 @@ class MethodDependency:
|
|
23
33
|
"""
|
24
34
|
Validates types and values of attributes during initialization.
|
25
35
|
|
26
|
-
Raises
|
27
|
-
|
36
|
+
Raises
|
37
|
+
------
|
38
|
+
ReflectionTypeError
|
39
|
+
If types don't match the expected:
|
28
40
|
- resolved: Dict[ResolvedDependency, Any]
|
29
41
|
- unresolved: List[str]
|
30
|
-
|
42
|
+
ValueError
|
43
|
+
If resolved contains None keys or unresolved contains empty strings
|
31
44
|
"""
|
32
45
|
# Validate 'resolved' is a dict with proper key types
|
33
46
|
if not isinstance(self.resolved, dict):
|
34
|
-
raise
|
47
|
+
raise ReflectionTypeError(
|
35
48
|
f"'resolved' must be a dict, got {type(self.resolved).__name__}"
|
36
49
|
)
|
37
50
|
|
38
51
|
# Validate 'unresolved' is a list of valid parameter names
|
39
52
|
if not isinstance(self.unresolved, list):
|
40
|
-
raise
|
53
|
+
raise ReflectionTypeError(
|
41
54
|
f"'unresolved' must be a list, got {type(self.unresolved).__name__}"
|
42
55
|
)
|
@@ -1,23 +1,33 @@
|
|
1
1
|
from dataclasses import dataclass
|
2
2
|
from typing import Type, Any
|
3
3
|
|
4
|
+
from orionis.services.introspection.exceptions.reflection_type_error import ReflectionTypeError
|
5
|
+
|
4
6
|
@dataclass(frozen=True, kw_only=True)
|
5
7
|
class ResolvedDependency:
|
6
8
|
"""
|
7
9
|
Represents a fully resolved dependency with complete type information.
|
8
10
|
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
11
|
+
Parameters
|
12
|
+
----------
|
13
|
+
module_name : str
|
14
|
+
The name of the module where the dependency is defined.
|
15
|
+
Must be a non-empty string without spaces.
|
16
|
+
class_name : str
|
17
|
+
The name of the class/type being resolved.
|
18
|
+
Must be a valid Python identifier.
|
19
|
+
type : Type
|
20
|
+
The actual Python type object of the resolved dependency.
|
21
|
+
full_class_path : str
|
22
|
+
The full import path to the class (e.g., 'package.module.ClassName').
|
23
|
+
Must match 'module_name.class_name' pattern.
|
24
|
+
|
25
|
+
Raises
|
26
|
+
------
|
27
|
+
ReflectionTypeError
|
28
|
+
If any field has incorrect type.
|
29
|
+
ValueError
|
30
|
+
If string fields are empty or don't meet format requirements.
|
21
31
|
"""
|
22
32
|
module_name: str
|
23
33
|
class_name: str
|
@@ -28,17 +38,20 @@ class ResolvedDependency:
|
|
28
38
|
"""
|
29
39
|
Validates all fields during initialization.
|
30
40
|
|
31
|
-
Raises
|
32
|
-
|
33
|
-
|
41
|
+
Raises
|
42
|
+
------
|
43
|
+
ReflectionTypeError
|
44
|
+
If any field has incorrect type.
|
45
|
+
ValueError
|
46
|
+
If string fields are empty or don't meet format requirements.
|
34
47
|
"""
|
35
48
|
# Validate module_name
|
36
49
|
if not isinstance(self.module_name, str):
|
37
|
-
raise
|
50
|
+
raise ReflectionTypeError(f"module_name must be str, got {type(self.module_name).__name__}")
|
38
51
|
|
39
52
|
# Validate class_name
|
40
53
|
if not isinstance(self.class_name, str):
|
41
|
-
raise
|
54
|
+
raise ReflectionTypeError(f"class_name must be str, got {type(self.class_name).__name__}")
|
42
55
|
|
43
56
|
# Validate type
|
44
57
|
if self.type is None:
|
@@ -46,4 +59,4 @@ class ResolvedDependency:
|
|
46
59
|
|
47
60
|
# Validate full_class_path
|
48
61
|
if not isinstance(self.full_class_path, str):
|
49
|
-
raise
|
62
|
+
raise ReflectionTypeError(f"full_class_path must be str, got {type(self.full_class_path).__name__}")
|
@@ -4,6 +4,7 @@ from orionis.services.introspection.dependencies.contracts.reflect_dependencies
|
|
4
4
|
from orionis.services.introspection.dependencies.entities.class_dependencies import ClassDependency
|
5
5
|
from orionis.services.introspection.dependencies.entities.method_dependencies import MethodDependency
|
6
6
|
from orionis.services.introspection.dependencies.entities.resolved_dependencies import ResolvedDependency
|
7
|
+
from orionis.services.introspection.exceptions.reflection_value_error import ReflectionValueError
|
7
8
|
|
8
9
|
class ReflectDependencies(IReflectDependencies):
|
9
10
|
"""
|
@@ -67,16 +68,16 @@ class ReflectDependencies(IReflectDependencies):
|
|
67
68
|
|
68
69
|
Raises
|
69
70
|
------
|
70
|
-
|
71
|
+
ReflectionValueError
|
71
72
|
If the signature cannot be inspected.
|
72
73
|
"""
|
73
74
|
if not callable(target):
|
74
|
-
raise
|
75
|
+
raise ReflectionValueError(f"Target {target} is not callable and cannot have a signature.")
|
75
76
|
|
76
77
|
try:
|
77
78
|
return inspect.signature(target)
|
78
|
-
except (
|
79
|
-
raise
|
79
|
+
except (ReflectionValueError, TypeError, Exception) as e:
|
80
|
+
raise ReflectionValueError(f"Unable to inspect signature of {target}: {str(e)}")
|
80
81
|
|
81
82
|
def getConstructorDependencies(self) -> ClassDependency:
|
82
83
|
"""
|
@@ -0,0 +1,26 @@
|
|
1
|
+
class ReflectionTypeError(Exception):
|
2
|
+
"""
|
3
|
+
Base class for all reflection-related exceptions.
|
4
|
+
"""
|
5
|
+
|
6
|
+
def __init__(self, msg: str):
|
7
|
+
"""
|
8
|
+
Initialize the exception with a custom error message.
|
9
|
+
|
10
|
+
Parameters
|
11
|
+
----------
|
12
|
+
msg : str
|
13
|
+
The error message describing the exception.
|
14
|
+
"""
|
15
|
+
super().__init__(msg)
|
16
|
+
|
17
|
+
def __str__(self) -> str:
|
18
|
+
"""
|
19
|
+
Return a string representation of the exception, including the class name and the first argument.
|
20
|
+
|
21
|
+
Returns
|
22
|
+
-------
|
23
|
+
str
|
24
|
+
A formatted string with the exception class name and the first argument.
|
25
|
+
"""
|
26
|
+
return f"{self.__class__.__name__}: {self.args[0]}"
|
@@ -0,0 +1,26 @@
|
|
1
|
+
class ReflectionValueError(Exception):
|
2
|
+
"""
|
3
|
+
Base class for all reflection-related exceptions.
|
4
|
+
"""
|
5
|
+
|
6
|
+
def __init__(self, msg: str):
|
7
|
+
"""
|
8
|
+
Initialize the exception with a custom error message.
|
9
|
+
|
10
|
+
Parameters
|
11
|
+
----------
|
12
|
+
msg : str
|
13
|
+
The error message describing the exception.
|
14
|
+
"""
|
15
|
+
super().__init__(msg)
|
16
|
+
|
17
|
+
def __str__(self) -> str:
|
18
|
+
"""
|
19
|
+
Return a string representation of the exception, including the class name and the first argument.
|
20
|
+
|
21
|
+
Returns
|
22
|
+
-------
|
23
|
+
str
|
24
|
+
A formatted string with the exception class name and the first argument.
|
25
|
+
"""
|
26
|
+
return f"{self.__class__.__name__}: {self.args[0]}"
|
@@ -226,7 +226,7 @@ orionis/foundation/config/testing/entities/testing.py,sha256=AuhPU9O15Aeqs8jQVHW
|
|
226
226
|
orionis/foundation/config/testing/enums/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
227
227
|
orionis/foundation/config/testing/enums/test_mode.py,sha256=IbFpauu7J-iSAfmC8jDbmTEYl8eZr-AexL-lyOh8_74,337
|
228
228
|
orionis/metadata/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
229
|
-
orionis/metadata/framework.py,sha256=
|
229
|
+
orionis/metadata/framework.py,sha256=IpTPvA6WGEXwbMnUNpTK4MwqgsElkdxs5NmSV8vn13M,4960
|
230
230
|
orionis/metadata/package.py,sha256=tqLfBRo-w1j_GN4xvzUNFyweWYFS-qhSgAEc-AmCH1M,5452
|
231
231
|
orionis/patterns/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
232
232
|
orionis/patterns/singleton/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -255,15 +255,16 @@ orionis/services/introspection/abstracts/reflect_abstract.py,sha256=JM0jqNIxXAn0
|
|
255
255
|
orionis/services/introspection/abstracts/entities/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
256
256
|
orionis/services/introspection/abstracts/entities/abstract_class_attributes.py,sha256=J6zL1REbfnynnCfgjJIzB-D8o3TeT-Yp_QcjdDI8wnU,1513
|
257
257
|
orionis/services/introspection/dependencies/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
258
|
-
orionis/services/introspection/dependencies/reflect_dependencies.py,sha256=
|
258
|
+
orionis/services/introspection/dependencies/reflect_dependencies.py,sha256=HL2cX7_SSIWeKxzBDUMEdmfjetrZmMfPZvqM34DvJMg,7145
|
259
259
|
orionis/services/introspection/dependencies/contracts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
260
|
-
orionis/services/introspection/dependencies/contracts/reflect_dependencies.py,sha256=
|
260
|
+
orionis/services/introspection/dependencies/contracts/reflect_dependencies.py,sha256=5fdImZarC1ixoFM-1JSBx28RvYbY3GGZhDGjar7cvHc,1771
|
261
261
|
orionis/services/introspection/dependencies/entities/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
262
|
-
orionis/services/introspection/dependencies/entities/class_dependencies.py,sha256=
|
263
|
-
orionis/services/introspection/dependencies/entities/method_dependencies.py,sha256=
|
264
|
-
orionis/services/introspection/dependencies/entities/resolved_dependencies.py,sha256=
|
262
|
+
orionis/services/introspection/dependencies/entities/class_dependencies.py,sha256=pALvV_duAvDYmNp7PJYWkpIIQYmqWxuc_RGruEckfPA,2063
|
263
|
+
orionis/services/introspection/dependencies/entities/method_dependencies.py,sha256=FDwroILMPhqPxaxisPVEeKeLUg57GNQ4tQfWjGMh40E,2194
|
264
|
+
orionis/services/introspection/dependencies/entities/resolved_dependencies.py,sha256=0qnEj-3H8iclCc79AduQrqAAdAihv7k39gipo3RT2zc,2216
|
265
265
|
orionis/services/introspection/exceptions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
266
|
-
orionis/services/introspection/exceptions/
|
266
|
+
orionis/services/introspection/exceptions/reflection_type_error.py,sha256=6BizQOgt50qlLPDBvBJfUWgAwAr_8GAk1FhownPs-8A,747
|
267
|
+
orionis/services/introspection/exceptions/reflection_value_error.py,sha256=X38649JMKSPbdpa1lmo69RhhTATH8ykTF-UAqe7IAaU,748
|
267
268
|
orionis/services/introspection/helpers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
268
269
|
orionis/services/introspection/helpers/functions.py,sha256=-UhQ53o4IU3XwpA2I0e0m8gZaH1DoDKaU_yH2XYqT54,8541
|
269
270
|
orionis/services/parsers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -344,14 +345,14 @@ orionis/test/output/dumper.py,sha256=y-6du3n1IU2Cd2MFbMuEiLcpMqEOqENkuAXwMMhcsEI
|
|
344
345
|
orionis/test/output/contracts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
345
346
|
orionis/test/output/contracts/dumper.py,sha256=5OqGc4GEXCXX76sCX185giQMyKwwZvlOv3I7tTwV2fQ,1324
|
346
347
|
orionis/test/suites/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
347
|
-
orionis/test/suites/test_suite.py,sha256=
|
348
|
+
orionis/test/suites/test_suite.py,sha256=nJhToYdvHFETSNqunk-_i6Pe716842eaFKDBhChjigA,5303
|
348
349
|
orionis/test/suites/test_unit.py,sha256=dnLEEeBnGkE7DRM2XXJPtxHw25JLzP9ZtcGImmBNBM4,54916
|
349
350
|
orionis/test/suites/contracts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
350
351
|
orionis/test/suites/contracts/test_suite.py,sha256=eluzYwkNBbKjxYStj_tHN_Fm3YDPpGQdqMu5eiluh-E,1059
|
351
352
|
orionis/test/suites/contracts/test_unit.py,sha256=l1LQllODyvcSByXMl1lGrUkoLsXbBHZZLWZI4A-mlQg,5881
|
352
353
|
orionis/test/view/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
353
354
|
orionis/test/view/render.py,sha256=jXZkbITBknbUwm_mD8bcTiwLDvsFkrO9qrf0ZgPwqxc,4903
|
354
|
-
orionis-0.
|
355
|
+
orionis-0.296.0.dist-info/licenses/LICENCE,sha256=-_4cF2EBKuYVS_SQpy1uapq0oJPUU1vl_RUWSy2jJTo,1111
|
355
356
|
tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
356
357
|
tests/example/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
357
358
|
tests/example/test_example.py,sha256=byd_lI6tVDgGPEIrr7PLZbBu0UoZOymmdmyA_4u-QUw,601
|
@@ -455,8 +456,8 @@ tests/support/inspection/fakes/fake_reflection_instance_with_abstract.py,sha256=
|
|
455
456
|
tests/testing/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
456
457
|
tests/testing/test_testing_result.py,sha256=MrGK3ZimedL0b5Ydu69Dg8Iul017AzLTm7VPxpXlpfU,4315
|
457
458
|
tests/testing/test_testing_unit.py,sha256=A6QkiOkP7GPC1Szh_GqsrV7GxjWjK8cIwFez6YfrzmM,7683
|
458
|
-
orionis-0.
|
459
|
-
orionis-0.
|
460
|
-
orionis-0.
|
461
|
-
orionis-0.
|
462
|
-
orionis-0.
|
459
|
+
orionis-0.296.0.dist-info/METADATA,sha256=4H2z-lUkh1MAdwf7Ok4wTkIwyVbUvKeaKzTs08KVYzk,4772
|
460
|
+
orionis-0.296.0.dist-info/WHEEL,sha256=Nw36Djuh_5VDukK0H78QzOX-_FQEo6V37m3nkm96gtU,91
|
461
|
+
orionis-0.296.0.dist-info/top_level.txt,sha256=2bdoHgyGZhOtLAXS6Om8OCTmL24dUMC_L1quMe_ETbk,14
|
462
|
+
orionis-0.296.0.dist-info/zip-safe,sha256=frcCV1k9oG9oKj3dpUqdJg1PxRT2RSN_XKdLCPjaYaY,2
|
463
|
+
orionis-0.296.0.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|