This commit is contained in:
Kovid Goyal 2014-11-21 09:51:53 +05:30
parent ba329fa521
commit 6f539330f4

View File

@ -103,7 +103,7 @@ class State(object):
return not self.__eq__(other) return not self.__eq__(other)
def __repr__(self): def __repr__(self):
return "PythonState(%r)" % (self.parse, self.pygments_stack) return "PythonState(%r)" % self.pygments_stack
__str__ = __repr__ __str__ = __repr__