datahold 1.3.0.dev0__tar.gz → 2.0.0__tar.gz
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.
- {datahold-1.3.0.dev0/src/datahold.egg-info → datahold-2.0.0}/PKG-INFO +3 -3
- {datahold-1.3.0.dev0 → datahold-2.0.0}/pyproject.toml +3 -3
- {datahold-1.3.0.dev0 → datahold-2.0.0}/src/datahold/core/OkaySet.py +3 -3
- {datahold-1.3.0.dev0 → datahold-2.0.0/src/datahold.egg-info}/PKG-INFO +3 -3
- {datahold-1.3.0.dev0 → datahold-2.0.0}/src/datahold.egg-info/requires.txt +1 -1
- {datahold-1.3.0.dev0 → datahold-2.0.0}/LICENSE.txt +0 -0
- {datahold-1.3.0.dev0 → datahold-2.0.0}/MANIFEST.in +0 -0
- {datahold-1.3.0.dev0 → datahold-2.0.0}/README.rst +0 -0
- {datahold-1.3.0.dev0 → datahold-2.0.0}/setup.cfg +0 -0
- {datahold-1.3.0.dev0 → datahold-2.0.0}/src/datahold/__init__.py +0 -0
- {datahold-1.3.0.dev0 → datahold-2.0.0}/src/datahold/_utils/__init__.py +0 -0
- {datahold-1.3.0.dev0 → datahold-2.0.0}/src/datahold/_utils/deco/__init__.py +0 -0
- {datahold-1.3.0.dev0 → datahold-2.0.0}/src/datahold/_utils/deco/dataDeco.py +0 -0
- {datahold-1.3.0.dev0 → datahold-2.0.0}/src/datahold/_utils/deco/funcDeco.py +0 -0
- {datahold-1.3.0.dev0 → datahold-2.0.0}/src/datahold/_utils/deco/initDeco.py +0 -0
- {datahold-1.3.0.dev0 → datahold-2.0.0}/src/datahold/_utils/deco/wrapping.py +0 -0
- {datahold-1.3.0.dev0 → datahold-2.0.0}/src/datahold/core/DataABC.py +0 -0
- {datahold-1.3.0.dev0 → datahold-2.0.0}/src/datahold/core/DataDict.py +0 -0
- {datahold-1.3.0.dev0 → datahold-2.0.0}/src/datahold/core/DataList.py +0 -0
- {datahold-1.3.0.dev0 → datahold-2.0.0}/src/datahold/core/DataSet.py +0 -0
- {datahold-1.3.0.dev0 → datahold-2.0.0}/src/datahold/core/HoldABC.py +0 -0
- {datahold-1.3.0.dev0 → datahold-2.0.0}/src/datahold/core/HoldDict.py +0 -0
- {datahold-1.3.0.dev0 → datahold-2.0.0}/src/datahold/core/HoldList.py +0 -0
- {datahold-1.3.0.dev0 → datahold-2.0.0}/src/datahold/core/HoldSet.py +0 -0
- {datahold-1.3.0.dev0 → datahold-2.0.0}/src/datahold/core/OkayABC.py +0 -0
- {datahold-1.3.0.dev0 → datahold-2.0.0}/src/datahold/core/OkayDict.py +0 -0
- {datahold-1.3.0.dev0 → datahold-2.0.0}/src/datahold/core/OkayList.py +0 -0
- {datahold-1.3.0.dev0 → datahold-2.0.0}/src/datahold/core/__init__.py +0 -0
- {datahold-1.3.0.dev0 → datahold-2.0.0}/src/datahold/tests/__init__.py +0 -0
- {datahold-1.3.0.dev0 → datahold-2.0.0}/src/datahold/tests/test_okay.py +0 -0
- {datahold-1.3.0.dev0 → datahold-2.0.0}/src/datahold.egg-info/SOURCES.txt +0 -0
- {datahold-1.3.0.dev0 → datahold-2.0.0}/src/datahold.egg-info/dependency_links.txt +0 -0
- {datahold-1.3.0.dev0 → datahold-2.0.0}/src/datahold.egg-info/top_level.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: datahold
|
|
3
|
-
Version:
|
|
3
|
+
Version: 2.0.0
|
|
4
4
|
Summary: This project wraps common mutable datastructures for inheritance with modification.
|
|
5
5
|
Author-email: Johannes <johannes.programming@gmail.com>
|
|
6
6
|
License: The MIT License (MIT)
|
|
@@ -28,7 +28,7 @@ Project-URL: Download, https://pypi.org/project/datahold/#files
|
|
|
28
28
|
Project-URL: Index, https://pypi.org/project/datahold/
|
|
29
29
|
Project-URL: Source, https://github.com/johannes-programming/datahold/
|
|
30
30
|
Project-URL: Website, http://datahold.johannes-programming.online/
|
|
31
|
-
Classifier: Development Status ::
|
|
31
|
+
Classifier: Development Status :: 5 - Production/Stable
|
|
32
32
|
Classifier: Intended Audience :: Developers
|
|
33
33
|
Classifier: License :: OSI Approved :: MIT License
|
|
34
34
|
Classifier: Natural Language :: English
|
|
@@ -43,7 +43,7 @@ License-File: LICENSE.txt
|
|
|
43
43
|
Requires-Dist: datarepr<2,>=1.0
|
|
44
44
|
Requires-Dist: frozendict<3,>=2.4.6
|
|
45
45
|
Requires-Dist: scaevola<2,>=1.0.11
|
|
46
|
-
Requires-Dist: setdoc<2,>=1.2
|
|
46
|
+
Requires-Dist: setdoc<2,>=1.2.4
|
|
47
47
|
Requires-Dist: unhash<2,>=1.0
|
|
48
48
|
Dynamic: license-file
|
|
49
49
|
|
|
@@ -9,7 +9,7 @@ authors = [
|
|
|
9
9
|
{ email = "johannes.programming@gmail.com", name = "Johannes" },
|
|
10
10
|
]
|
|
11
11
|
classifiers = [
|
|
12
|
-
"Development Status ::
|
|
12
|
+
"Development Status :: 5 - Production/Stable",
|
|
13
13
|
"Intended Audience :: Developers",
|
|
14
14
|
"License :: OSI Approved :: MIT License",
|
|
15
15
|
"Natural Language :: English",
|
|
@@ -23,7 +23,7 @@ dependencies = [
|
|
|
23
23
|
"datarepr>=1.0,<2",
|
|
24
24
|
"frozendict>=2.4.6,<3",
|
|
25
25
|
"scaevola>=1.0.11,<2",
|
|
26
|
-
"setdoc>=1.2,<2",
|
|
26
|
+
"setdoc>=1.2.4,<2",
|
|
27
27
|
"unhash>=1.0,<2",
|
|
28
28
|
]
|
|
29
29
|
description = "This project wraps common mutable datastructures for inheritance with modification."
|
|
@@ -31,7 +31,7 @@ keywords = []
|
|
|
31
31
|
name = "datahold"
|
|
32
32
|
readme = "README.rst"
|
|
33
33
|
requires-python = ">=3.11"
|
|
34
|
-
version = "
|
|
34
|
+
version = "2.0.0"
|
|
35
35
|
|
|
36
36
|
[project.license]
|
|
37
37
|
file = "LICENSE.txt"
|
|
@@ -42,16 +42,16 @@ class OkaySet(OkayABC, HoldSet):
|
|
|
42
42
|
"This method returns a copy of self without the items not found in all of the others."
|
|
43
43
|
return type(self)(self._data.intersection(*others))
|
|
44
44
|
|
|
45
|
+
@setdoc.basic
|
|
45
46
|
def isdisjoint(self: Self, other: Any, /) -> bool:
|
|
46
|
-
"This method determines if self and other have no intersection."
|
|
47
47
|
return self._data.isdisjoint(other)
|
|
48
48
|
|
|
49
|
+
@setdoc.basic
|
|
49
50
|
def issubset(self: Self, other: Any, /) -> bool:
|
|
50
|
-
"This method determines if self is a subset of other."
|
|
51
51
|
return self._data.issubset(other)
|
|
52
52
|
|
|
53
|
+
@setdoc.basic
|
|
53
54
|
def issuperset(self: Self, other: Any, /) -> bool:
|
|
54
|
-
"This method determines if self is a superset of other."
|
|
55
55
|
return self._data.issuperset(other)
|
|
56
56
|
|
|
57
57
|
def symmetric_difference(self: Self, other: Any, /) -> Self:
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: datahold
|
|
3
|
-
Version:
|
|
3
|
+
Version: 2.0.0
|
|
4
4
|
Summary: This project wraps common mutable datastructures for inheritance with modification.
|
|
5
5
|
Author-email: Johannes <johannes.programming@gmail.com>
|
|
6
6
|
License: The MIT License (MIT)
|
|
@@ -28,7 +28,7 @@ Project-URL: Download, https://pypi.org/project/datahold/#files
|
|
|
28
28
|
Project-URL: Index, https://pypi.org/project/datahold/
|
|
29
29
|
Project-URL: Source, https://github.com/johannes-programming/datahold/
|
|
30
30
|
Project-URL: Website, http://datahold.johannes-programming.online/
|
|
31
|
-
Classifier: Development Status ::
|
|
31
|
+
Classifier: Development Status :: 5 - Production/Stable
|
|
32
32
|
Classifier: Intended Audience :: Developers
|
|
33
33
|
Classifier: License :: OSI Approved :: MIT License
|
|
34
34
|
Classifier: Natural Language :: English
|
|
@@ -43,7 +43,7 @@ License-File: LICENSE.txt
|
|
|
43
43
|
Requires-Dist: datarepr<2,>=1.0
|
|
44
44
|
Requires-Dist: frozendict<3,>=2.4.6
|
|
45
45
|
Requires-Dist: scaevola<2,>=1.0.11
|
|
46
|
-
Requires-Dist: setdoc<2,>=1.2
|
|
46
|
+
Requires-Dist: setdoc<2,>=1.2.4
|
|
47
47
|
Requires-Dist: unhash<2,>=1.0
|
|
48
48
|
Dynamic: license-file
|
|
49
49
|
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|