kwarg_str = ', '.join(['%s=%r' % tup for tup in sorted_items])
return '%s(%s)' % (type(self).__name__, kwarg_str)
+ __hash__ = None
+
def __eq__(self, other):
return vars(self) == vars(other)
def __init__(self, name):
self.name = name
+ __hash__ = None
+
def __eq__(self, other):
if other in self.seen:
text = self.seen[other]
def __init__(self, name):
self.name = name
+ __hash__ = None
+
def __eq__(self, other):
if other not in self.seen:
text = 'Check that file is writable.'
def __init__(self, value):
self.value = value
+ __hash__ = None
+
def __eq__(self, other):
return (type(self), self.value) == (type(other), other.value)
def __init__(self, value):
self.value = value
+ __hash__ = None
+
def __eq__(self, other):
return (type(self), self.value) == (type(other), other.value)