diff options
author | Raymond Hettinger <python@rcn.com> | 2012-07-12 11:26:56 -0700 |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2012-07-12 11:26:56 -0700 |
commit | 77f7a9bcc9de8e417281eee9b362b15fe0ec4fa9 (patch) | |
tree | 59f0784324ebe54f7acca6502dc350c03c0a5047 /Doc/library/cmd.rst | |
parent | 5df020409187e81fe466616b4255d8ba627ba9db (diff) | |
parent | 921d1244c6fdacdd2044ed9fdf2ffac5588a641e (diff) | |
download | cpython-git-77f7a9bcc9de8e417281eee9b362b15fe0ec4fa9.tar.gz |
merge
Diffstat (limited to 'Doc/library/cmd.rst')
-rw-r--r-- | Doc/library/cmd.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/cmd.rst b/Doc/library/cmd.rst index 0c43bb84a3..97229280c3 100644 --- a/Doc/library/cmd.rst +++ b/Doc/library/cmd.rst @@ -276,7 +276,7 @@ immediate playback:: print('Thank you for using Turtle') self.close() bye() - sys.exit(0) + return True # ----- record and playback ----- def do_record(self, arg): |