Path: csiph.com!x330-a1.tempe.blueboxinc.net!usenet.pasdenom.info!selfless.tophat.at!newsfeed.xs4all.nl!newsfeed6.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.000 X-Spam-Evidence: '*H*': 1.00; '*S*': 0.00; 'subject:bug': 0.04; 'received:verizon.net': 0.07; 'terry': 0.07; 'mentions': 0.09; 'myself,': 0.09; 'received:80.91': 0.09; 'received:80.91.229': 0.09; 'received:80.91.229.12': 0.09; 'received:gmane.org': 0.09; 'received:list': 0.09; 'received:lo.gmane.org': 0.09; 'am,': 0.13; 'wrote:': 0.15; 'library': 0.15; '8:26': 0.16; 'billy': 0.16; 'measured': 0.16; 'reedy': 0.16; 'pm,': 0.16; '>>>': 0.16; 'def': 0.16; 'written': 0.17; 'jan': 0.19; '(which': 0.20; 'memory': 0.21; 'loop': 0.22; 'header:In-Reply-To:1': 0.22; 'noticed': 0.26; 'efficiently': 0.30; 'lines': 0.31; 'file.': 0.32; 'does': 0.32; "what's": 0.33; 'to:addr:python-list': 0.34; 'header:X-Complaints- To:1': 0.34; 'header:User-Agent:1': 0.34; 'uses': 0.35; 'file': 0.36; 'using': 0.37; 'received:org': 0.38; 'subject:: ': 0.38; 'header:Mime-Version:1': 0.39; 'to:addr:python.org': 0.39; 'ahead': 0.63; 'gain.': 0.84; 'subject:Possible': 0.84 X-Injected-Via-Gmane: http://gmane.org/ To: python-list@python.org From: Terry Reedy Subject: Re: Possible File iteration bug Date: Fri, 15 Jul 2011 17:45:27 -0400 References: <9f5ddd41-79a7-46a6-b5fe-dd94600d581a@j15g2000yqf.googlegroups.com> Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Gmane-NNTP-Posting-Host: pool-74-109-121-73.phlapa.fios.verizon.net User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.2.18) Gecko/20110616 Lightning/1.0b2 Thunderbird/3.1.11 In-Reply-To: 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: 28 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1310766347 news.xs4all.nl 23920 [2001:888:2000:d::a6]:42073 X-Complaints-To: abuse@xs4all.nl Xref: x330-a1.tempe.blueboxinc.net comp.lang.python:9573 On 7/15/2011 8:26 AM, Billy Mays wrote: > On 07/15/2011 04:01 AM, bruno.desthuilliers@gmail.com wrote: >> On Jul 14, 9:46 pm, Billy Mays wrote: >>> I noticed that if a file is being continuously written to, the file >>> generator does not notice it: >>> >>> def getLines(f): >>> lines = [] >>> for line in f: >>> lines.append(line) >>> return lines >> >> what's wrong with file.readlines() ? > > Using that will read the entire file into memory which may not be So will getLines. > possible. In the library reference, it mentions that using the generator > (which calls file.next()) uses a read ahead buffer to efficiently loop > over the file. If I call .readline() myself, I forfeit that performance > gain. Are you sure? Have you measured the difference? -- Terry Jan Reedy