use pkg_resources from setuptools-69.0.3

This commit is contained in:
rembo10
2024-01-18 14:56:54 +05:30
parent 3685d32a7d
commit ad6a4f570e
85 changed files with 15912 additions and 8262 deletions

View File

@@ -19,9 +19,6 @@ class InfinityType:
def __eq__(self, other: object) -> bool:
return isinstance(other, self.__class__)
def __ne__(self, other: object) -> bool:
return not isinstance(other, self.__class__)
def __gt__(self, other: object) -> bool:
return True
@@ -51,9 +48,6 @@ class NegativeInfinityType:
def __eq__(self, other: object) -> bool:
return isinstance(other, self.__class__)
def __ne__(self, other: object) -> bool:
return not isinstance(other, self.__class__)
def __gt__(self, other: object) -> bool:
return False