Loading reader.py +6 −6 Original line number Diff line number Diff line Loading @@ -254,7 +254,7 @@ class Reader(): def nextNonSpace(self): while True: ch = self.nextChar() if ch == "" or not ch.isspace(): if not ch or not ch.isspace(): return ch def nextToken(self): if self.pushbacktoken: Loading @@ -263,7 +263,7 @@ class Reader(): result = t else: ch = self.nextNonSpace() if ch == "": if not ch: result = EOFToken() elif ch == "(": result = OparenToken() Loading Loading
reader.py +6 −6 Original line number Diff line number Diff line Loading @@ -254,7 +254,7 @@ class Reader(): def nextNonSpace(self): while True: ch = self.nextChar() if ch == "" or not ch.isspace(): if not ch or not ch.isspace(): return ch def nextToken(self): if self.pushbacktoken: Loading @@ -263,7 +263,7 @@ class Reader(): result = t else: ch = self.nextNonSpace() if ch == "": if not ch: result = EOFToken() elif ch == "(": result = OparenToken() Loading