v440 2.0.0.dev54__tar.gz → 2.0.0.dev56__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.
- {v440-2.0.0.dev54/src/v440.egg-info → v440-2.0.0.dev56}/PKG-INFO +1 -1
- {v440-2.0.0.dev54 → v440-2.0.0.dev56}/pyproject.toml +1 -1
- {v440-2.0.0.dev54 → v440-2.0.0.dev56}/src/v440/_utils/BaseList.py +2 -2
- {v440-2.0.0.dev54 → v440-2.0.0.dev56}/src/v440/_utils/Digest.py +1 -1
- {v440-2.0.0.dev54 → v440-2.0.0.dev56}/src/v440/_utils/SlotList.py +1 -8
- {v440-2.0.0.dev54 → v440-2.0.0.dev56}/src/v440/_utils/VList.py +0 -1
- v440-2.0.0.dev56/src/v440/_utils/cfg.toml +9 -0
- {v440-2.0.0.dev54 → v440-2.0.0.dev56}/src/v440/core/Local.py +0 -1
- {v440-2.0.0.dev54 → v440-2.0.0.dev56/src/v440.egg-info}/PKG-INFO +1 -1
- v440-2.0.0.dev54/src/v440/_utils/cfg.toml +0 -9
- {v440-2.0.0.dev54 → v440-2.0.0.dev56}/LICENSE.txt +0 -0
- {v440-2.0.0.dev54 → v440-2.0.0.dev56}/MANIFEST.in +0 -0
- {v440-2.0.0.dev54 → v440-2.0.0.dev56}/README.rst +0 -0
- {v440-2.0.0.dev54 → v440-2.0.0.dev56}/setup.cfg +0 -0
- {v440-2.0.0.dev54 → v440-2.0.0.dev56}/src/v440/__init__.py +0 -0
- {v440-2.0.0.dev54 → v440-2.0.0.dev56}/src/v440/_utils/Cfg.py +0 -0
- {v440-2.0.0.dev54 → v440-2.0.0.dev56}/src/v440/_utils/Pattern.py +0 -0
- {v440-2.0.0.dev54 → v440-2.0.0.dev56}/src/v440/_utils/__init__.py +0 -0
- {v440-2.0.0.dev54 → v440-2.0.0.dev56}/src/v440/_utils/qualparse.py +0 -0
- {v440-2.0.0.dev54 → v440-2.0.0.dev56}/src/v440/_utils/utils.py +0 -0
- {v440-2.0.0.dev54 → v440-2.0.0.dev56}/src/v440/core/Base.py +0 -0
- {v440-2.0.0.dev54 → v440-2.0.0.dev56}/src/v440/core/Public.py +0 -0
- {v440-2.0.0.dev54 → v440-2.0.0.dev56}/src/v440/core/Qual.py +0 -0
- {v440-2.0.0.dev54 → v440-2.0.0.dev56}/src/v440/core/Release.py +0 -0
- {v440-2.0.0.dev54 → v440-2.0.0.dev56}/src/v440/core/Version.py +0 -0
- {v440-2.0.0.dev54 → v440-2.0.0.dev56}/src/v440/core/VersionError.py +0 -0
- {v440-2.0.0.dev54 → v440-2.0.0.dev56}/src/v440/core/__init__.py +0 -0
- {v440-2.0.0.dev54 → v440-2.0.0.dev56}/src/v440/tests/__init__.py +0 -0
- {v440-2.0.0.dev54 → v440-2.0.0.dev56}/src/v440/tests/test_testdata.py +0 -0
- {v440-2.0.0.dev54 → v440-2.0.0.dev56}/src/v440/tests/test_version.py +0 -0
- {v440-2.0.0.dev54 → v440-2.0.0.dev56}/src/v440/tests/testdata.toml +0 -0
- {v440-2.0.0.dev54 → v440-2.0.0.dev56}/src/v440.egg-info/SOURCES.txt +0 -0
- {v440-2.0.0.dev54 → v440-2.0.0.dev56}/src/v440.egg-info/dependency_links.txt +0 -0
- {v440-2.0.0.dev54 → v440-2.0.0.dev56}/src/v440.egg-info/requires.txt +0 -0
- {v440-2.0.0.dev54 → v440-2.0.0.dev56}/src/v440.egg-info/top_level.txt +0 -0
|
@@ -11,7 +11,7 @@ from v440.core.VersionError import VersionError
|
|
|
11
11
|
|
|
12
12
|
|
|
13
13
|
@scaevola.auto
|
|
14
|
-
class BaseList(collections.abc.
|
|
14
|
+
class BaseList(collections.abc.Collection):
|
|
15
15
|
__slots__ = ()
|
|
16
16
|
|
|
17
17
|
@abstractmethod
|
|
@@ -103,7 +103,7 @@ class BaseList(collections.abc.Sized):
|
|
|
103
103
|
|
|
104
104
|
@setdoc.basic
|
|
105
105
|
def __setitem__(self: Self, key: Any, value: Any) -> None:
|
|
106
|
-
data: list = list(self.
|
|
106
|
+
data: list = list(self.data)
|
|
107
107
|
data[key] = value
|
|
108
108
|
self.data = data
|
|
109
109
|
|
|
@@ -1,21 +1,14 @@
|
|
|
1
|
-
import collections
|
|
2
|
-
from abc import abstractmethod
|
|
3
1
|
from functools import partial
|
|
4
2
|
from typing import *
|
|
5
3
|
|
|
6
|
-
import scaevola
|
|
7
4
|
import setdoc
|
|
8
|
-
from datarepr import datarepr
|
|
9
5
|
|
|
10
6
|
from v440._utils.BaseList import BaseList
|
|
11
|
-
from v440._utils.utils import guard
|
|
12
|
-
from v440.core.VersionError import VersionError
|
|
13
7
|
|
|
14
8
|
__all__ = ["SlotList"]
|
|
15
9
|
|
|
16
10
|
|
|
17
|
-
|
|
18
|
-
class SlotList(collections.abc.Collection, BaseList):
|
|
11
|
+
class SlotList(BaseList):
|
|
19
12
|
__slots__ = ()
|
|
20
13
|
|
|
21
14
|
data: tuple
|
|
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
|