Lines Matching refs:line
59 line.
115 msg, (dummy_filename, lineno, offset, line) = value.args
121 value = SyntaxError(msg, (filename, lineno, offset, line))
227 line = self.raw_input(prompt)
232 more = self.push(line)
242 def push(self, line):
243 """Push a line to the interpreter.
245 The line should not have a trailing newline; it may have
246 internal newlines. The line is appended to a buffer and the
251 is left as it was after the line was appended. The return
252 value is 1 if more input is required, 0 if the line was dealt
256 self.buffer.append(line)
264 """Write a prompt and read a line.
266 The returned line does not include the trailing newline.