v440 2.0.0.dev180__tar.gz → 2.0.0.dev181__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.dev180/src/v440.egg-info → v440-2.0.0.dev181}/PKG-INFO +1 -1
- {v440-2.0.0.dev180 → v440-2.0.0.dev181}/pyproject.toml +1 -1
- {v440-2.0.0.dev180 → v440-2.0.0.dev181}/src/v440/_utils/SlotStringer.py +0 -3
- {v440-2.0.0.dev180 → v440-2.0.0.dev181}/src/v440/core/Base.py +3 -0
- {v440-2.0.0.dev180 → v440-2.0.0.dev181}/src/v440/core/Public.py +3 -0
- {v440-2.0.0.dev180 → v440-2.0.0.dev181}/src/v440/core/Version.py +3 -0
- {v440-2.0.0.dev180 → v440-2.0.0.dev181/src/v440.egg-info}/PKG-INFO +1 -1
- {v440-2.0.0.dev180 → v440-2.0.0.dev181}/LICENSE.txt +0 -0
- {v440-2.0.0.dev180 → v440-2.0.0.dev181}/MANIFEST.in +0 -0
- {v440-2.0.0.dev180 → v440-2.0.0.dev181}/README.rst +0 -0
- {v440-2.0.0.dev180 → v440-2.0.0.dev181}/setup.cfg +0 -0
- {v440-2.0.0.dev180 → v440-2.0.0.dev181}/src/v440/__init__.py +0 -0
- {v440-2.0.0.dev180 → v440-2.0.0.dev181}/src/v440/_utils/BaseStringer.py +0 -0
- {v440-2.0.0.dev180 → v440-2.0.0.dev181}/src/v440/_utils/Cfg.py +0 -0
- {v440-2.0.0.dev180 → v440-2.0.0.dev181}/src/v440/_utils/ListStringer.py +0 -0
- {v440-2.0.0.dev180 → v440-2.0.0.dev181}/src/v440/_utils/Pattern.py +0 -0
- {v440-2.0.0.dev180 → v440-2.0.0.dev181}/src/v440/_utils/__init__.py +0 -0
- {v440-2.0.0.dev180 → v440-2.0.0.dev181}/src/v440/_utils/cfg.toml +0 -0
- {v440-2.0.0.dev180 → v440-2.0.0.dev181}/src/v440/_utils/guarding.py +0 -0
- {v440-2.0.0.dev180 → v440-2.0.0.dev181}/src/v440/_utils/releaseparse/__init__.py +0 -0
- {v440-2.0.0.dev180 → v440-2.0.0.dev181}/src/v440/_utils/releaseparse/deleting.py +0 -0
- {v440-2.0.0.dev180 → v440-2.0.0.dev181}/src/v440/_utils/releaseparse/getting.py +0 -0
- {v440-2.0.0.dev180 → v440-2.0.0.dev181}/src/v440/_utils/releaseparse/ranging.py +0 -0
- {v440-2.0.0.dev180 → v440-2.0.0.dev181}/src/v440/_utils/releaseparse/setting.py +0 -0
- {v440-2.0.0.dev180 → v440-2.0.0.dev181}/src/v440/core/Local.py +0 -0
- {v440-2.0.0.dev180 → v440-2.0.0.dev181}/src/v440/core/Qual.py +0 -0
- {v440-2.0.0.dev180 → v440-2.0.0.dev181}/src/v440/core/Release.py +0 -0
- {v440-2.0.0.dev180 → v440-2.0.0.dev181}/src/v440/core/VersionError.py +0 -0
- {v440-2.0.0.dev180 → v440-2.0.0.dev181}/src/v440/core/__init__.py +0 -0
- {v440-2.0.0.dev180 → v440-2.0.0.dev181}/src/v440/tests/__init__.py +0 -0
- {v440-2.0.0.dev180 → v440-2.0.0.dev181}/src/v440/tests/test_testdata.py +0 -0
- {v440-2.0.0.dev180 → v440-2.0.0.dev181}/src/v440/tests/test_version.py +0 -0
- {v440-2.0.0.dev180 → v440-2.0.0.dev181}/src/v440/tests/testdata.toml +0 -0
- {v440-2.0.0.dev180 → v440-2.0.0.dev181}/src/v440.egg-info/SOURCES.txt +0 -0
- {v440-2.0.0.dev180 → v440-2.0.0.dev181}/src/v440.egg-info/dependency_links.txt +0 -0
- {v440-2.0.0.dev180 → v440-2.0.0.dev181}/src/v440.egg-info/requires.txt +0 -0
- {v440-2.0.0.dev180 → v440-2.0.0.dev181}/src/v440.egg-info/top_level.txt +0 -0
|
@@ -51,6 +51,9 @@ class Public(SlotStringer):
|
|
|
51
51
|
self.base.string = base
|
|
52
52
|
self.qual.string = qual
|
|
53
53
|
|
|
54
|
+
def _cmp(self: Self) -> tuple:
|
|
55
|
+
return self.base, self.qual
|
|
56
|
+
|
|
54
57
|
def _format(self: Self, format_spec: str) -> str:
|
|
55
58
|
return format(self.base, format_spec) + format(self.qual)
|
|
56
59
|
|
|
@@ -51,6 +51,9 @@ class Version(SlotStringer):
|
|
|
51
51
|
self.public.string = public
|
|
52
52
|
self.local.string = local
|
|
53
53
|
|
|
54
|
+
def _cmp(self: Self) -> tuple:
|
|
55
|
+
return self.public, self.local
|
|
56
|
+
|
|
54
57
|
def _format(self: Self, format_spec: str) -> str:
|
|
55
58
|
ans: str = format(self.public, format_spec)
|
|
56
59
|
if self.local:
|
|
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
|
|
File without changes
|
|
File without changes
|