X-FeedAbuse: http://nntpfeed.proxad.net/abuse.pl feeded by 78.192.65.63 Path: csiph.com!usenet.pasdenom.info!nntpfeed.proxad.net!news.muarf.org!news.roellig-ltd.de!open-news-network.org!border2.nntp.ams1.giganews.com!nntp.giganews.com!newsfeed.xs4all.nl!newsfeed4a.news.xs4all.nl!xs4all!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.047 X-Spam-Evidence: '*H*': 0.91; '*S*': 0.00; 'subject:Python3': 0.09; 'subject:Why': 0.09; 'cleaned': 0.16; 'wrote:': 0.18; 'looked': 0.18; 'script': 0.25; 'header:In-Reply-To:1': 0.27; 'am,': 0.29; 'message-id:@mail.gmail.com': 0.30; 'subject:the': 0.34; 'subject:with': 0.35; 'but': 0.35; 'received:google.com': 0.35; 'to:addr:python-list': 0.38; 'to:addr:python.org': 0.39; '2015': 0.84 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:from:date:message-id:subject:to :content-type; bh=lUclgFtoSpwUrAXDnUNsRSET8U9kvMSUdJ8sY2xEsZc=; b=y6+bEDzo2IBl8b0VuGJVkDKwt98b9/WJpkDzWzS6V/C0lK0N1NROjBejG583tLYyAx hImFuqy4olRQnRfaCtJZM+w+F4qTB8XH2NZqtrhw9UVUmd5AV9ZEd8SA91gZ98jLCyst 17vhK/crrGHoJle2KYoVXWGj643WCBexpDViV/slFGIVtITpcI6EnD1/gEE3+bkrZGR5 r6ZZWz1qggcEFHcr4zVPYmI40HPm31i6P2+fVYnbEIPVbz9g6cOhQ+fL9he8LOvzvNKk DCYudfWXR86R0mTdNJu8rFdEzRNLWyRcdxTd8o0Zeixbg+WuPibaNWYKawYUM3mGPZ3M hqQg== X-Received: by 10.50.225.35 with SMTP id rh3mr22033645igc.29.1432050604419; Tue, 19 May 2015 08:50:04 -0700 (PDT) MIME-Version: 1.0 In-Reply-To: <874mn8vd8n.fsf@Equus.decebal.nl> References: <878uckvjoy.fsf@Equus.decebal.nl> <874mn8vd8n.fsf@Equus.decebal.nl> From: Ian Kelly Date: Tue, 19 May 2015 09:49:24 -0600 Subject: Re: Why does the first loop go wrong with Python3 To: Python Content-Type: text/plain; charset=UTF-8 X-BeenThere: python-list@python.org X-Mailman-Version: 2.1.20+ 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: 7 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1432050607 news.xs4all.nl 2934 [2001:888:2000:d::a6]:50461 X-Complaints-To: abuse@xs4all.nl Xref: csiph.com comp.lang.python:90863 On Tue, May 19, 2015 at 8:44 AM, Cecil Westerhof wrote: > I looked at the documentation. Is it necessary to do a: > p.wait() > afterwards? It's good practice to clean up zombie processes by waiting on them, but they will also get cleaned up when your script exits.