Path: csiph.com!v102.xanadu-bbs.net!xanadu-bbs.net!feeder.erje.net!eu.feeder.erje.net!eweka.nl!lightspeed.eweka.nl!194.134.4.91.MISMATCH!news2.euro.net!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.090 X-Spam-Evidence: '*H*': 0.82; '*S*': 0.00; 'memory.': 0.07; 'oh,': 0.09; 'agree.': 0.16; 'from:addr:rosuav': 0.16; 'from:name:chris angelico': 0.16; 'somewhere.': 0.16; 'sat,': 0.16; 'wrote:': 0.18; '>>>': 0.22; 'bytes': 0.24; 'char': 0.24; 'header:In-Reply-To:1': 0.27; 'am,': 0.29; 'message-id:@mail.gmail.com': 0.30; '>>>>': 0.31; 'know.': 0.32; 'totally': 0.33; 'problem': 0.35; 'but': 0.35; 'received:google.com': 0.35; 'there': 0.35; 'belong': 0.36; 'to:addr:python-list': 0.38; 'to:addr:python.org': 0.39; '8bit%:6': 0.40; 'how': 0.40; 'become': 0.64; 'more': 0.64; 'charset:windows-1252': 0.65; '20,': 0.68; 'euro': 0.69; 'jul': 0.74; 'square': 0.74; '2013': 0.98 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:to :content-type:content-transfer-encoding; bh=PmbvCSBbXZdA1zS1eRjbOzVkuy2+MoFiJfd9RkETlpc=; b=HdIW32/kXsJgU2q+tmDCwZr5EmTrCDSLBoUA5xnbyDpb/BKT95wCcSUIPDrGCsVE+B xYGQy5561Kpv+JuLN2A8fAS4wSaOMJIHDKwkojtS+ywMyZAPIaocVj5gBnhtdNms3i+V iCP3GrNa/2tFdSgGaLk4qed+W4vy/lbkSLLLoHnyleNbB5YIwjQz4T56W+jVh1B7FiC/ nsBGDCpm7XEbjB2OUbAAyLfbllqpQVclc0YF/Hbyp5BCwt/AOgXEOtVo9bHXu/bXt1c4 taIm6Ms8LFLLOR5Tk7uZrYwwveM++CetxqkEuee9k7QVr9NSXoWnt36C1x8HEGhe0Cf8 Ua7A== MIME-Version: 1.0 X-Received: by 10.58.223.238 with SMTP id qx14mr6243597vec.98.1374273352585; Fri, 19 Jul 2013 15:35:52 -0700 (PDT) In-Reply-To: <713bdf49-10ee-4694-b7c1-54beef22a922@googlegroups.com> References: <51dd22a6$0$11094$c3e8da3@news.astraweb.com> <713bdf49-10ee-4694-b7c1-54beef22a922@googlegroups.com> Date: Sat, 20 Jul 2013 08:35:52 +1000 Subject: =?windows-1252?Q?Re=3A_Stack_Overflow_moderator_=93animuson=94?= From: Chris Angelico To: python-list@python.org Content-Type: text/plain; charset=windows-1252 Content-Transfer-Encoding: quoted-printable 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: 23 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1374273361 news.xs4all.nl 15965 [2001:888:2000:d::a6]:53404 X-Complaints-To: abuse@xs4all.nl Xref: csiph.com comp.lang.python:50925 On Sat, Jul 20, 2013 at 4:54 AM, wrote: > And do not forget memory. The =80uro just become expensive. > >>>> sys.getsizeof(' > ) > 26 >>>> sys.getsizeof('=80') > 40 > > I do not know. When an =80uro char need 14 bytes more that > a dollar, I belong to those who thing there is a problem > somewhere. Oh, I totally agree. But it's not just the Euro symbol that's expensive. Look how much I have to pay for a couple of square brackets! >>> sys.getsizeof((1)) 14 >>> sys.getsizeof([1]) 40 ChrisA