Merge branch 'develop' into release/3.15.x

This commit is contained in:
Jakub Trllo 2022-12-20 15:14:09 +01:00
commit ffca809c42

View file

@ -788,6 +788,10 @@ class CreatorType:
def __eq__(self, other):
return self.name == str(other)
def __ne__(self, other):
# This is implemented only because of Python 2
return not self == other
class CreatorTypes:
base = CreatorType("base")