Searched refs:exitmsg (Results 1 – 4 of 4) sorted by relevance
/third_party/python/Lib/ |
D | code.py | 188 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/ |
D | code.rst | 33 .. 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/ |
D | test_code_module.py | 102 self.console.interact(banner='', exitmsg='') 111 self.console.interact(banner='', exitmsg=message)
|
/third_party/python/Lib/asyncio/ |
D | __main__.py | 82 exitmsg='exiting asyncio REPL...')
|