Home
last modified time | relevance | path

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

/external/python/cpython3/Lib/
Dcode.py189 def interact(self, banner=None, exitmsg=None): argument
238 if exitmsg is None:
240 elif exitmsg != '':
241 self.write('%s\n' % exitmsg)
279 def interact(banner=None, readfunc=None, local=None, exitmsg=None): argument
302 console.interact(banner, exitmsg)
/external/python/cpython3/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
/external/python/cpython3/Lib/test/
Dtest_code_module.py94 self.console.interact(banner='', exitmsg='')
103 self.console.interact(banner='', exitmsg=message)