Fix indentation error tokens

This commit is contained in:
Dave Halter
2019-01-16 23:21:31 +01:00
parent 20fd32b45d
commit dac4c445a7
3 changed files with 42 additions and 4 deletions
+3 -1
View File
@@ -169,7 +169,9 @@ class EndMarker(_LeafWithoutNewlines):
@utf8_repr
def __repr__(self):
return "<%s: prefix=%s>" % (type(self).__name__, repr(self.prefix))
return "<%s: prefix=%s end_pos=%s>" % (
type(self).__name__, repr(self.prefix), self.end_pos
)
class Newline(PythonLeaf):