Push a token onto the stack popped by the get_token method
(self, tok)
| 68 | return self._punctuation_chars |
| 69 | |
| 70 | def push_token(self, tok): |
| 71 | "Push a token onto the stack popped by the get_token method" |
| 72 | if self.debug >= 1: |
| 73 | print("shlex: pushing token " + repr(tok)) |
| 74 | self.pushback.appendleft(tok) |
| 75 | |
| 76 | def push_source(self, newstream, newfile=None): |
| 77 | "Push an input source onto the lexer's input source stack." |
nothing calls this directly
no test coverage detected