diff options
author | Steven D'Aprano <steve@pearwood.info> | 2016-08-14 18:14:33 (GMT) |
---|---|---|
committer | Steven D'Aprano <steve@pearwood.info> | 2016-08-14 18:14:33 (GMT) |
commit | dd51d16b485f013c8f6489fede4faf1686c59e5e (patch) | |
tree | 749311f562bb7f6f1cfce6c177152bd8c55f17f8 /Doc/library/code.rst | |
parent | a0d3eeff864a5b03ee2d05232b3ec14bd86a0970 (diff) | |
download | cpython-dd51d16b485f013c8f6489fede4faf1686c59e5e.zip cpython-dd51d16b485f013c8f6489fede4faf1686c59e5e.tar.gz cpython-dd51d16b485f013c8f6489fede4faf1686c59e5e.tar.bz2 |
Issue27573 code.interact prints a message when exiting.
Diffstat (limited to 'Doc/library/code.rst')
-rw-r--r-- | Doc/library/code.rst | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Doc/library/code.rst b/Doc/library/code.rst index 443af69..c573087 100644 --- a/Doc/library/code.rst +++ b/Doc/library/code.rst @@ -147,6 +147,9 @@ interpreter objects as well as the following additions. .. versionchanged:: 3.4 To suppress printing any banner, pass an empty string. + .. versionchanged:: 3.6 + Now prints a brief message when exiting. + .. method:: InteractiveConsole.push(line) |