Path: csiph.com!x330-a1.tempe.blueboxinc.net!usenet.pasdenom.info!weretis.net!feeder1.news.weretis.net!feeder.erje.net!newsfeed.xs4all.nl!newsfeed6.news.xs4all.nl!xs4all!newsgate.cistron.nl!newsgate.news.xs4all.nl!post.news.xs4all.nl!not-for-mail Return-Path: X-Original-To: python-list@python.org Delivered-To: python-list@mail.python.org X-Spam-Status: OK 0.004 X-Spam-Evidence: '*H*': 0.99; '*S*': 0.00; 'interpreter': 0.05; 'stuff.': 0.05; 'python': 0.08; '>>>>': 0.09; 'function:': 0.09; 'interpreter,': 0.09; 'subject:python': 0.10; 'received:209.85.210.174': 0.13; 'received:mail- iy0-f174.google.com': 0.13; '(well,': 0.16; 'cleanly': 0.16; 'from:addr:rosuav': 0.16; 'from:name:chris angelico': 0.16; "linux's": 0.16; 'subject: \n ': 0.16; 'subject:between': 0.16; 'wed,': 0.17; 'wrote:': 0.18; 'session.': 0.18; 'header:In-Reply- To:1': 0.22; 'command': 0.24; 'windows': 0.26; 'random': 0.28; 'message-id:@mail.gmail.com': 0.28; '24,': 0.29; 'exit': 0.29; 'nov': 0.29; 'pm,': 0.29; 'cmd': 0.30; 'equivalent': 0.31; 'thu,': 0.32; 'to:addr:python-list': 0.34; 'it.': 0.34; 'window': 0.35; 'received:google.com': 0.37; 'open': 0.38; 'steven': 0.38; 'some': 0.38; 'received:209.85': 0.38; 'received:209': 0.40; 'to:addr:python.org': 0.40; '2011': 0.61; 'subject:will': 0.64; 'golden': 0.73; 'cd,': 0.84; 'dir,': 0.84; 'stuff:': 0.84; 'subject:commands': 0.84; 'subject:history': 0.84 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :content-type:content-transfer-encoding; bh=0D7yJuR9nUaUhXkeUyzifst41pQCY6KdJ5sLTVxVOMI=; b=Rj/3tpYeo7AjVkXveEulB1sic6K017LmSwWB7WCU7JEYPWQdWCanZXkTScktv2fCjQ qRE7dGXtQM+B9TcgfojkQsk0qruL15moAyiqsTkeyzT8+WYBmR+i61KakAQC17r5MhsV 7x+9KBufxk67JBeXBvfNwtg7bbJrGD/q8qjO0= MIME-Version: 1.0 In-Reply-To: <4ecda8ea$0$30003$c3e8da3$5496439d@news.astraweb.com> References: <4737007e-029d-4ecb-9315-f3ceb4bb06ed@t16g2000vba.googlegroups.com> <4ecccb07$0$29993$c3e8da3$5496439d@news.astraweb.com> <4ecda8ea$0$30003$c3e8da3$5496439d@news.astraweb.com> Date: Thu, 24 Nov 2011 15:30:57 +1100 Subject: Re: python shell that saves history of typed in commands that will persist between reboots From: Chris Angelico To: python-list@python.org Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable X-BeenThere: python-list@python.org X-Mailman-Version: 2.1.12 Precedence: list List-Id: General discussion list for the Python programming language List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Newsgroups: comp.lang.python Message-ID: Lines: 16 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1322109066 news.xs4all.nl 6906 [2001:888:2000:d::a6]:52084 X-Complaints-To: abuse@xs4all.nl Xref: x330-a1.tempe.blueboxinc.net comp.lang.python:16145 On Thu, Nov 24, 2011 at 1:16 PM, Steven D'Aprano wrote: > On Wed, 23 Nov 2011 10:37:56 +0000, Tim Golden wrote: > >> The interpreter inherits the command shell's history function: Open a >> cmd window and then a Python session. Do some stuff. >> >> Ctrl-Z to exit to the surrounding cmd window. Do some random cmd stuff: >> dir, cd, etc. >>>> > [1]+ =A0Stopped =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 python Ctrl-Z is the Windows equivalent (well, mostly) of Linux's Ctrl-D. You want to cleanly exit the interpreter, not SIGSTOP it. ChrisA