Path: csiph.com!usenet.pasdenom.info!gegeweb.org!usenet-fr.net!nerim.net!novso.com!newsfeed.xs4all.nl!newsfeed3a.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.036 X-Spam-Evidence: '*H*': 0.93; '*S*': 0.00; 'interpreter': 0.05; 'subject:set': 0.09; 'sure,': 0.09; 'cc:addr:python-list': 0.11; 'python': 0.11; 'wrote': 0.14; 'changes': 0.15; '1:13': 0.16; 'caveat': 0.16; 'from:addr:rosuav': 0.16; 'from:name:chris angelico': 0.16; 'wrote:': 0.18; 'thu,': 0.19; 'feb': 0.22; 'cc:addr:python.org': 0.22; 'integer': 0.24; 'file.': 0.24; 'cc:2**0': 0.24; 'handling': 0.26; 'header:In-Reply-To:1': 0.27; 'am,': 0.29; 'message-id:@mail.gmail.com': 0.30; '13,': 0.31; 'subject:numbers': 0.31; 'file': 0.32; 'quite': 0.32; 'text': 0.33; 'computer.': 0.33; 'subject:the': 0.34; 'subject:with': 0.35; 'anywhere': 0.35; 'but': 0.35; 'received:google.com': 0.35; 'machine.': 0.36; 'files': 0.38; 'how': 0.40; 'size.': 0.65; 'capable': 0.67; 'nobody': 0.68; 'limit': 0.70; 'computers': 0.72; 'incoming': 0.72; 'physical': 0.72; 'potentially': 0.81; 'streams': 0.84; 'to:none': 0.92; 'suffer': 0.93 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:date:message-id:subject:from:cc :content-type; bh=UNJWnzlra665lwlLkLifoUhmQg9vLy5mDBjY8zhdneM=; b=aVoOLho0h4kB/6X7KM8/wiLh780UiDF7c3Jwk7z3xwO7huYrd0Sdwzd1za8p+uT8kY V1RPQvVL3IFu6zl0QqbFVY6LAaTiJX/LPbLfTKP1NcWus1Bez/x7HQEkPmfotrDIXA0G eAesy7YaNMCKBF2mteJUUSv3J5+cwpfI0uNeuW1VIEYpNjKPkCTFz9FSFZVH3I9gIxDo Ehom4+5LBsVNvZzPL/9GKkXYR9QnfQtIoGoKNhzUW+kXop/6r1GcKI5zVcPqdfm/OVSr wsXByIrc1XGHKVZWw2Ps3LDXH7zhzC2g5Plz+p9bT97cZpZT9HHZgacntXZ/m/1Z5w2a RJ+A== MIME-Version: 1.0 X-Received: by 10.66.160.2 with SMTP id xg2mr40449218pab.23.1392227551950; Wed, 12 Feb 2014 09:52:31 -0800 (PST) In-Reply-To: <87txc4bers.fsf@elektro.pacujo.net> References: <8e4c1ab1-e65d-483f-ad9d-6933ae2052c3@googlegroups.com> <888bd2fc-54b0-4c46-9d7b-d81d01a78b52@googlegroups.com> <52f59aeb$0$29972$c3e8da3$5496439d@news.astraweb.com> <7cc8f49d-a4c7-48c2-a0af-ac58c847d794@googlegroups.com> <71e578f8-0d23-4b8e-b9f2-b987bdc9c01d@googlegroups.com> <85r478bv99.fsf_-_@benfinney.id.au> <85ioskbtfm.fsf@benfinney.id.au> <85eh38bq5z.fsf@benfinney.id.au> <8761okcx8z.fsf@elektro.pacujo.net> <87txc4bers.fsf@elektro.pacujo.net> Date: Thu, 13 Feb 2014 04:52:31 +1100 Subject: Re: Working with the set of real numbers From: Chris Angelico Cc: "python-list@python.org" Content-Type: text/plain; charset=UTF-8 X-BeenThere: python-list@python.org X-Mailman-Version: 2.1.15 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: 12 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1392227560 news.xs4all.nl 2861 [2001:888:2000:d::a6]:39301 X-Complaints-To: abuse@xs4all.nl Xref: csiph.com comp.lang.python:66063 On Thu, Feb 13, 2014 at 1:13 AM, Marko Rauhamaa wrote: > Text files suffer from the same caveat as integers: there's a limit to > how much you can store on the physical computer. Sure, but nobody said the text file had to be _stored_ anywhere :) Computers are quite capable of working with streams of incoming data that are potentially infinite in size. But again, this is the same caveat as the Turing machine. If you wrote a Python interpreter for a Turing machine, it would be - without any changes to Python - capable of handling any integer and any text file. ChrisA