Path: csiph.com!usenet.pasdenom.info!aioe.org!news.stack.nl!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.008 X-Spam-Evidence: '*H*': 0.98; '*S*': 0.00; 'sys': 0.05; 'subject: + ': 0.07; 'url:github': 0.09; ':-)': 0.13; '(must': 0.16; 'from:addr:mrabarnett.plus.com': 0.16; 'from:addr:python': 0.16; 'from:name:mrab': 0.16; 'message-id:@mrabarnett.plus.com': 0.16; 'reason.': 0.16; 'received:84.93': 0.16; 'received:84.93.230': 0.16; 'wrote:': 0.17; '>>>': 0.18; 'import': 0.21; 'ctypes': 0.22; 'paul': 0.24; 'header:In-Reply-To:1': 0.25; 'header:User-Agent:1': 0.26; 'values': 0.26; 'guess': 0.27; 'received:192.168.1.3': 0.29; 'received:84': 0.32; 'to:addr:python-list': 0.33; 'false': 0.35; 'skip:f 40': 0.35; 'but': 0.36; 'author': 0.37; 'subject:: ': 0.38; 'to:addr:python.org': 0.39; 'received:192': 0.39; 'received:192.168': 0.40; 'header:Reply-To:1': 0.68; 'reply-to:no real name:2**0': 0.72; 'heh.': 0.84; 'nagy': 0.84; 'reply- to:addr:python.org': 0.84 X-CM-Score: 0.00 X-CNFS-Analysis: v=2.0 cv=HL5B5/Rv c=1 sm=1 a=0nF1XD0wxitMEM03M9B4ZQ==:17 a=YsUzL_8ObRgA:10 a=ihvODaAuJD4A:10 a=OUOv7kDek9cA:10 a=8nJEP1OIZ-IA:10 a=EBOSESyhAAAA:8 a=8AHkEIZyAAAA:8 a=NEAV23lmAAAA:8 a=LJrdtUf66pkw5eqIaAcA:9 a=wPNLvfGTeEIA:10 a=0nF1XD0wxitMEM03M9B4ZQ==:117 X-AUTH: mrabarnett:2500 Date: Thu, 05 Jul 2012 16:20:25 +0100 From: MRAB User-Agent: Mozilla/5.0 (Windows NT 5.1; rv:13.0) Gecko/20120614 Thunderbird/13.0.1 MIME-Version: 1.0 To: python-list@python.org Subject: Re: 2 + 2 = 5 References: <7x7guj2u8a.fsf@ruckus.brouhaha.com> <4FF5A5EE.9050308@shopzeus.com> In-Reply-To: <4FF5A5EE.9050308@shopzeus.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-BeenThere: python-list@python.org X-Mailman-Version: 2.1.12 Precedence: list Reply-To: python-list@python.org 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: 41 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1341501634 news.xs4all.nl 6912 [2001:888:2000:d::a6]:59448 X-Complaints-To: abuse@xs4all.nl Xref: csiph.com comp.lang.python:24928 On 05/07/2012 15:34, Laszlo Nagy wrote: > On 2012-07-04 21:37, Paul Rubin wrote: >> I just came across this (https://gist.github.com/1208215): >> >> import sys >> import ctypes >> pyint_p = ctypes.POINTER(ctypes.c_byte*sys.getsizeof(5)) >> five = ctypes.cast(id(5), pyint_p) >> print(2 + 2 == 5) # False >> five.contents[five.contents[:].index(5)] = 4 >> print(2 + 2 == 5) # True (must be sufficiently large values of 2 there...) >> >> Heh. The author is apparently anonymous, I guess for good reason. > > >>> five.contents[five.contents[:].index(5)] = 4 > >>> 5 > 4 > >>> 5 is 4 > True > > But this I don't understand: > > >>> 5+0 > 4 5 is interned as 4, 0 is interned as 0, 4+0 is calculated as 4 and then interned as 4. > >>> 5+1 > 4 5 is interned as 4, 1 is interned as 1, 4+1 is calculated as 5 and then interned as 4. > >>> 5+2 > 6 > 5 is interned as 4, 2 is interned as 2, 4+2 is calculated as 6 and then interned and 6. Simple really! :-)