mirror of
https://github.com/davidhalter/parso.git
synced 2026-04-25 17:05:21 +08:00
Fix indentation error tokens
This commit is contained in:
@@ -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):
|
||||
|
||||
Reference in New Issue
Block a user