/opt/cloudlinux/venv/lib/python3.11/site-packages/requirements_detector/poetry_semver
from .version_constraint import VersionConstraint class EmptyConstraint(VersionConstraint): def is_empty(self): return True def is_any(self): return False def allows(self, version): return False def allows_all(self, other): return other.is_empty() def allows_any(self, other): return False def intersect(self, other): return self def union(self, other): return other def difference(self, other): return self def __str__(self): return "<empty>"
.
Edit
..
Edit
README.md
Edit
__init__.py
Edit
__pycache__
Edit
empty_constraint.py
Edit
exceptions.py
Edit
patterns.py
Edit
version.py
Edit
version_constraint.py
Edit
version_range.py
Edit
version_union.py
Edit