Home
last modified time | relevance | path

Searched refs:exitmsg (Results 1 – 4 of 4) sorted by relevance

/third_party/python/Lib/
Dcode.py188 def interact(self, banner=None, exitmsg=None): argument
237 if exitmsg is None:
239 elif exitmsg != '':
240 self.write('%s\n' % exitmsg)
278 def interact(banner=None, readfunc=None, local=None, exitmsg=None): argument
301 console.interact(banner, exitmsg)
/third_party/python/Doc/library/
Dcode.rst33 .. function:: interact(banner=None, readfunc=None, local=None, exitmsg=None)
40 method of the instance is then run with *banner* and *exitmsg* passed as the
45 Added *exitmsg* parameter.
143 .. method:: InteractiveConsole.interact(banner=None, exitmsg=None)
151 The optional *exitmsg* argument specifies an exit message printed when exiting.
152 Pass the empty string to suppress the exit message. If *exitmsg* is not given or
/third_party/python/Lib/test/
Dtest_code_module.py102 self.console.interact(banner='', exitmsg='')
111 self.console.interact(banner='', exitmsg=message)
/third_party/python/Lib/asyncio/
D__main__.py82 exitmsg='exiting asyncio REPL...')