Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > comp.lang.python > #64542

Re: No overflow in variables?

Path csiph.com!v102.xanadu-bbs.net!xanadu-bbs.net!feeder.erje.net!eu.feeder.erje.net!newsfeed.xs4all.nl!newsfeed3a.news.xs4all.nl!xs4all!newsgate.cistron.nl!newsgate.news.xs4all.nl!post.news.xs4all.nl!not-for-mail
Return-Path <random832@fastmail.us>
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; 'one?': 0.05; '22,': 0.09; 'overflow': 0.09; 'received:internal': 0.09; 'python': 0.11; 'jan': 0.12; 'assortment': 0.16; 'message- id:@webmail.messagingengine.com': 0.16; 'precision.': 0.16; 'received:10.202': 0.16; 'received:10.202.2': 0.16; 'received:66.111': 0.16; 'received:66.111.4': 0.16; 'received:messagingengine.com': 0.16; 'throw': 0.16; 'wrote:': 0.18; 'wed,': 0.18; 'machine': 0.22; 'integer': 0.24; 'header:In- Reply-To:1': 0.27; 'chris': 0.29; 'exceptions': 0.31; 'received:66': 0.35; 'usual': 0.35; 'library.': 0.36; 'subject:?': 0.36; 'received:10': 0.37; 'to:addr:python-list': 0.38; 'does': 0.39; 'to:addr:python.org': 0.39; 'from:no real name:2**0': 0.61; 'header:Message-Id:1': 0.63; 'default': 0.69; '2014,': 0.84
DKIM-Signature v=1; a=rsa-sha1; c=relaxed/relaxed; d=fastmail.us; h= message-id:from:to:mime-version:content-transfer-encoding :content-type:subject:date:in-reply-to:references; s=mesmtp; bh= hLCJ/npq1ZpSO9veIT1dBewvzo0=; b=qex8RNrPWmZBv3zu78losKyVTsjB58OU fPve3/hYfrkeLgf44wBQ1TtSnYWMXd9+NNqSoGHWX89EUZAs4lZhUfFBZ8E6ySD6 pSyfIFitrzqII1rPP/d3Sz/IlKJdeDrzo73piaVq5T54UT5shZFKis77hrbY0iEq Bha7jb4TeLQ=
DKIM-Signature v=1; a=rsa-sha1; c=relaxed/relaxed; d= messagingengine.com; h=message-id:from:to:mime-version :content-transfer-encoding:content-type:subject:date:in-reply-to :references; s=smtpout; bh=hLCJ/npq1ZpSO9veIT1dBewvzo0=; b=CoCIj 5kwb0c17A/Qjab1sH7wUFGmKh396J7ryJgbW7Ax+fUCaShKEgXpgrFXpfxW5L4Tt FlK/pD3KWLHGCk14OaEl59q66AZXT3mL9DuNjckOC3fhv9GQEvDQu0BUqhC1EH9r Xqi8umd9hXNSKfGbZ9m8BCut0A0Y49rkd4UYgg=
X-Sasl-Enc Oz5dQpa4o9fLKsH2t5xxc2NFEhRjPlUBHnREmxIyICEL 1390432411
From random832@fastmail.us
To python-list@python.org
MIME-Version 1.0
Content-Transfer-Encoding 7bit
Content-Type text/plain
X-Mailer MessagingEngine.com Webmail Interface - ajax-aec78a11
Subject Re: No overflow in variables?
Date Wed, 22 Jan 2014 18:13:31 -0500
In-Reply-To <CAPTjJmqkSc+9O5XUWO6Zvm82eZ+853qgGugzA-Vngui4VPAQjw@mail.gmail.com>
References <dd6a72bf-b1c4-4868-9cfe-76dfac8b8787@googlegroups.com> <CAPTjJmqkSc+9O5XUWO6Zvm82eZ+853qgGugzA-Vngui4VPAQjw@mail.gmail.com>
X-BeenThere python-list@python.org
X-Mailman-Version 2.1.15
Precedence list
List-Id General discussion list for the Python programming language <python-list.python.org>
List-Unsubscribe <https://mail.python.org/mailman/options/python-list>, <mailto:python-list-request@python.org?subject=unsubscribe>
List-Archive <http://mail.python.org/pipermail/python-list/>
List-Post <mailto:python-list@python.org>
List-Help <mailto:python-list-request@python.org?subject=help>
List-Subscribe <https://mail.python.org/mailman/listinfo/python-list>, <mailto:python-list-request@python.org?subject=subscribe>
Newsgroups comp.lang.python
Message-ID <mailman.5852.1390432414.18130.python-list@python.org> (permalink)
Lines 7
NNTP-Posting-Host 2001:888:2000:d::a6
X-Trace 1390432414 news.xs4all.nl 2945 [2001:888:2000:d::a6]:32798
X-Complaints-To abuse@xs4all.nl
Xref csiph.com comp.lang.python:64542

Show key headers only | View raw


On Wed, Jan 22, 2014, at 13:26, Chris Angelico wrote:
> The Python integer type stores arbitrary precision. It's not a machine
> word, like the C# integer types (plural, or does it have only one?

C# has the usual assortment of fixed-width integer types - though by
default they throw exceptions on overflow instead of wrapping around -
and a BigInteger type in the library.

Back to comp.lang.python | Previous | NextPrevious in thread | Next in thread | Find similar | Unroll thread


Thread

No overflow in variables? Philip Red <filippo.biolcati@googlemail.com> - 2014-01-22 10:09 -0800
  Re: No overflow in variables? Larry Martell <larry.martell@gmail.com> - 2014-01-22 11:18 -0700
  Re:No overflow in variables? Dave Angel <davea@davea.name> - 2014-01-22 13:26 -0500
  Re: No overflow in variables? Philip Red <filippo.biolcati@googlemail.com> - 2014-01-22 10:32 -0800
  Re: No overflow in variables? Chris Angelico <rosuav@gmail.com> - 2014-01-23 05:26 +1100
    Re: No overflow in variables? Roy Smith <roy@panix.com> - 2014-01-22 15:55 -0500
    Re: No overflow in variables? Gregory Ewing <greg.ewing@canterbury.ac.nz> - 2014-01-23 11:22 +1300
  Re: No overflow in variables? Philip Red <filippo.biolcati@googlemail.com> - 2014-01-22 10:48 -0800
  Re: No overflow in variables? random832@fastmail.us - 2014-01-22 18:13 -0500
  Re: No overflow in variables? Christian Heimes <christian@python.org> - 2014-01-23 10:14 +0100
  Re: No overflow in variables? Chris Angelico <rosuav@gmail.com> - 2014-01-23 20:36 +1100

csiph-web