v440 2.0.0.dev62__tar.gz → 2.0.0.dev63__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.dev62/src/v440.egg-info → v440-2.0.0.dev63}/PKG-INFO +1 -1
- {v440-2.0.0.dev62 → v440-2.0.0.dev63}/pyproject.toml +1 -1
- {v440-2.0.0.dev62 → v440-2.0.0.dev63}/src/v440/_utils/utils.py +0 -9
- {v440-2.0.0.dev62 → v440-2.0.0.dev63}/src/v440/core/Public.py +0 -2
- {v440-2.0.0.dev62 → v440-2.0.0.dev63}/src/v440/core/Qual.py +1 -1
- {v440-2.0.0.dev62 → v440-2.0.0.dev63/src/v440.egg-info}/PKG-INFO +1 -1
- {v440-2.0.0.dev62 → v440-2.0.0.dev63}/LICENSE.txt +0 -0
- {v440-2.0.0.dev62 → v440-2.0.0.dev63}/MANIFEST.in +0 -0
- {v440-2.0.0.dev62 → v440-2.0.0.dev63}/README.rst +0 -0
- {v440-2.0.0.dev62 → v440-2.0.0.dev63}/setup.cfg +0 -0
- {v440-2.0.0.dev62 → v440-2.0.0.dev63}/src/v440/__init__.py +0 -0
- {v440-2.0.0.dev62 → v440-2.0.0.dev63}/src/v440/_utils/BaseList.py +0 -0
- {v440-2.0.0.dev62 → v440-2.0.0.dev63}/src/v440/_utils/Cfg.py +0 -0
- {v440-2.0.0.dev62 → v440-2.0.0.dev63}/src/v440/_utils/Digest.py +0 -0
- {v440-2.0.0.dev62 → v440-2.0.0.dev63}/src/v440/_utils/Pattern.py +0 -0
- {v440-2.0.0.dev62 → v440-2.0.0.dev63}/src/v440/_utils/SlotList.py +0 -0
- {v440-2.0.0.dev62 → v440-2.0.0.dev63}/src/v440/_utils/VList.py +0 -0
- {v440-2.0.0.dev62 → v440-2.0.0.dev63}/src/v440/_utils/__init__.py +0 -0
- {v440-2.0.0.dev62 → v440-2.0.0.dev63}/src/v440/_utils/cfg.toml +0 -0
- {v440-2.0.0.dev62 → v440-2.0.0.dev63}/src/v440/_utils/qualparse.py +0 -0
- {v440-2.0.0.dev62 → v440-2.0.0.dev63}/src/v440/core/Base.py +0 -0
- {v440-2.0.0.dev62 → v440-2.0.0.dev63}/src/v440/core/Local.py +1 -1
- {v440-2.0.0.dev62 → v440-2.0.0.dev63}/src/v440/core/Release.py +1 -1
- {v440-2.0.0.dev62 → v440-2.0.0.dev63}/src/v440/core/Version.py +0 -0
- {v440-2.0.0.dev62 → v440-2.0.0.dev63}/src/v440/core/VersionError.py +0 -0
- {v440-2.0.0.dev62 → v440-2.0.0.dev63}/src/v440/core/__init__.py +0 -0
- {v440-2.0.0.dev62 → v440-2.0.0.dev63}/src/v440/tests/__init__.py +0 -0
- {v440-2.0.0.dev62 → v440-2.0.0.dev63}/src/v440/tests/test_testdata.py +0 -0
- {v440-2.0.0.dev62 → v440-2.0.0.dev63}/src/v440/tests/test_version.py +0 -0
- {v440-2.0.0.dev62 → v440-2.0.0.dev63}/src/v440/tests/testdata.toml +0 -0
- {v440-2.0.0.dev62 → v440-2.0.0.dev63}/src/v440.egg-info/SOURCES.txt +0 -0
- {v440-2.0.0.dev62 → v440-2.0.0.dev63}/src/v440.egg-info/dependency_links.txt +0 -0
- {v440-2.0.0.dev62 → v440-2.0.0.dev63}/src/v440.egg-info/requires.txt +0 -0
- {v440-2.0.0.dev62 → v440-2.0.0.dev63}/src/v440.egg-info/top_level.txt +0 -0
|
@@ -62,15 +62,6 @@ def _segment(value: Any, /) -> int | str:
|
|
|
62
62
|
return int(value)
|
|
63
63
|
|
|
64
64
|
|
|
65
|
-
def ishashable(value: Any) -> bool:
|
|
66
|
-
try:
|
|
67
|
-
hash(value)
|
|
68
|
-
except Exception:
|
|
69
|
-
return False
|
|
70
|
-
else:
|
|
71
|
-
return True
|
|
72
|
-
|
|
73
|
-
|
|
74
65
|
def guard(old: Any) -> Any:
|
|
75
66
|
@functools.wraps(old)
|
|
76
67
|
def new(self: Self, value: Any) -> None:
|
|
@@ -5,10 +5,8 @@ from typing import *
|
|
|
5
5
|
import setdoc
|
|
6
6
|
from overloadable import Overloadable
|
|
7
7
|
|
|
8
|
-
from v440._utils.Digest import Digest
|
|
9
8
|
from v440._utils.Pattern import Pattern
|
|
10
9
|
from v440._utils.SlotList import SlotList
|
|
11
|
-
from v440._utils.utils import guard
|
|
12
10
|
from v440.core.Base import Base
|
|
13
11
|
from v440.core.Qual import Qual
|
|
14
12
|
|
|
@@ -5,7 +5,7 @@ from typing import *
|
|
|
5
5
|
import setdoc
|
|
6
6
|
from overloadable import Overloadable
|
|
7
7
|
|
|
8
|
-
from v440._utils import qualparse
|
|
8
|
+
from v440._utils import qualparse
|
|
9
9
|
from v440._utils.Pattern import Pattern
|
|
10
10
|
from v440._utils.SlotList import SlotList
|
|
11
11
|
from v440._utils.utils import guard
|
|
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
|