Path: csiph.com!usenet.pasdenom.info!news.redatomik.org!newsfeed.xs4all.nl!newsfeed3.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.003 X-Spam-Evidence: '*H*': 0.99; '*S*': 0.00; 'bug.': 0.09; 'character,': 0.09; 'option,': 0.09; 'received:80.91': 0.09; 'received:80.91.229': 0.09; 'received:gmane.org': 0.09; 'received:list': 0.09; 'subject:set': 0.09; 'terminated': 0.09; '\\n,': 0.16; 'emits': 0.16; 'f.tell()': 0.16; 'it;': 0.16; 'macs': 0.16; 'newlines': 0.16; 'rather,': 0.16; 'received:80.91.229.3': 0.16; 'received:dip0.t-ipconnect.de': 0.16; 'received:plane.gmane.org': 0.16; 'received:t-ipconnect.de': 0.16; 'sees': 0.16; 'subject:when': 0.16; 'tried:': 0.16; 'followed': 0.16; 'wrote:': 0.18; 'basically': 0.19; 'skip:f 30': 0.19; '>>>': 0.22; 'header:User-Agent:1': 0.23; 'mon,': 0.24; '(or': 0.24; 'read,': 0.26; 'header:X-Complaints-To:1': 0.27; 'fixed': 0.29; 'chris': 0.29; 'character': 0.29; "i'm": 0.30; 'lines': 0.31; 'assert': 0.31; 'assumes': 0.31; 'documenting': 0.31; 'file': 0.32; 'another': 0.32; 'text': 0.33; "can't": 0.35; 'knows': 0.35; 'something': 0.35; 'but': 0.35; 'next': 0.36; 'subject:?': 0.36; 'should': 0.36; 'easily': 0.37; 'to:addr :python-list': 0.38; 'files': 0.38; 'pm,': 0.38; 'sure': 0.39; 'to:addr:python.org': 0.39; 'received:org': 0.40; 'read': 0.60; 'blank': 0.60; 'removing': 0.60; 'worth': 0.66; 'believe': 0.68; 'line,': 0.68; 'subject:get': 0.81; '2015': 0.84; 'moves': 0.84; 'otten': 0.84; 'convinced': 0.93; 'imagine': 0.93 X-Injected-Via-Gmane: http://gmane.org/ To: python-list@python.org From: Peter Otten <__peter__@web.de> Subject: Re: when does newlines get set in universal newlines mode? Date: Mon, 04 May 2015 17:17:21 +0200 Organization: None References: <3c45772b-77e0-4c17-8b3d-aa246c4b511c@googlegroups.com> Mime-Version: 1.0 Content-Type: text/plain; charset="ISO-8859-1" Content-Transfer-Encoding: 7Bit X-Gmane-NNTP-Posting-Host: p57bd9422.dip0.t-ipconnect.de User-Agent: KNode/4.13.3 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: 55 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1430752649 news.xs4all.nl 2955 [2001:888:2000:d::a6]:50269 X-Complaints-To: abuse@xs4all.nl Xref: csiph.com comp.lang.python:89909 Chris Angelico wrote: > On Mon, May 4, 2015 at 10:01 PM, Peter Otten <__peter__@web.de> wrote: >> I tried: >> >>>>> with open("tmp.txt", "wb") as f: f.write("alpha\r\nbeta\rgamma\n") >> ... >>>>> f = open("tmp.txt", "rU") >>>>> f.newlines >>>>> f.readline() >> 'alpha\n' >>>>> f.newlines >> # expected: '\r\n' >>>>> f.readline() >> 'beta\n' >>>>> f.newlines >> '\r\n' # expected: ('\r', '\r\n') >>>>> f.readline() >> 'gamma\n' >>>>> f.newlines >> ('\r', '\n', '\r\n') >> >> I believe this is a bug. > > I'm not sure it is, actually; imagine the text is coming in one > character at a time (eg from a pipe), and it's seen "alpha\r". It > knows that this is a line, so it emits it; but until the next > character is read, it can't know whether it's going to be \r or \r\n. > What should it do? Read another character, which might block? Put "\r" > into .newlines, which might be wrong? Once it sees the \n, it knows > that it was \r\n (or rather, it assumes that files do not have lines > of text terminated by \r followed by blank lines terminated by \n - > because that would be stupid). > > It may be worth documenting this limitation, but it's not something > that can easily be fixed without removing support for \r newlines - > although that might be an option, given that non-OSX Macs are > basically history now. OK, you convinced me. Then I tried: >>> with open("tmp.txt", "wb") as f: f.write("0\r\n3\r5\n7") ... >>> assert len(open("tmp.txt", "rb").read()) == 8 >>> f = open("tmp.txt", "rU") >>> f.readline() '0\n' >>> f.newlines >>> f.tell() 3 >>> f.newlines '\r\n' Hm, so tell() moves the file pointer? Is that sane?