Path: csiph.com!optima2.xanadu-bbs.net!xanadu-bbs.net!feeder.erje.net!us.feeder.erje.net!news2.arglkargh.de!newsfeed.fsmpi.rwth-aachen.de!newsfeed.straub-nv.de!feeds.phibee-telecom.net!newsfeed.xs4all.nl!newsfeed8.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.005 X-Spam-Evidence: '*H*': 0.99; '*S*': 0.00; 'mrab': 0.05; 'strings.': 0.07; 'type:': 0.09; 'python.': 0.11; 'from:addr:mrabarnett.plus.com': 0.16; 'from:addr:python': 0.16; 'from:name:mrab': 0.16; 'left,': 0.16; 'message- id:@mrabarnett.plus.com': 0.16; 'received:192.168.1.4': 0.16; 'received:84.93': 0.16; 'received:84.93.230': 0.16; 'wrote:': 0.16; 'string': 0.17; 'basically': 0.18; '>>>': 0.20; 'mind.': 0.22; 'tkinter': 0.22; 'performing': 0.23; 'header:In-Reply-To:1': 0.24; 'header:User-Agent:1': 0.26; 'specify': 0.27; 'tcl': 0.29; 'operations': 0.31; 'received:84': 0.32; 'but': 0.36; 'to:addr :python-list': 0.36; 'subject:: ': 0.37; 'data': 0.39; 'does': 0.39; 'received:192': 0.39; 'to:addr:python.org': 0.40; 'where': 0.40; 'subject:with': 0.40; 'yes': 0.62; 'pardon': 0.84; 'subject:leading': 0.84; 'edwards': 0.91 X-CM-Score: 0.00 X-CNFS-Analysis: v=2.1 cv=OoyysHLt c=1 sm=1 tr=0 a=0nF1XD0wxitMEM03M9B4ZQ==:117 a=0nF1XD0wxitMEM03M9B4ZQ==:17 a=0Bzu9jTXAAAA:8 a=EBOSESyhAAAA:8 a=JAI3OqB5mnwA:10 a=IkcTkHD0fZMA:10 a=VWEXzdepaXjxZ6IcVAcA:9 a=QEXdDO2ut3YA:10 X-AUTH: mrabarnett@:2500 Subject: Re: Integers with leading zeroes To: python-list@python.org References: <55ab37fb$0$1661$c3e8da3$5496439d@news.astraweb.com> <55aeea13$0$1669$c3e8da3$5496439d@news.astraweb.com> <55aefc70$0$1656$c3e8da3$5496439d@news.astraweb.com> <55AFB673.4040100@rece.vub.ac.be> From: MRAB Date: Wed, 22 Jul 2015 17:24:49 +0100 User-Agent: Mozilla/5.0 (Windows NT 6.3; WOW64; rv:38.0) Gecko/20100101 Thunderbird/38.1.0 MIME-Version: 1.0 In-Reply-To: Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 7bit 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: 19 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1437582293 news.xs4all.nl 2863 [2001:888:2000:d::a6]:49326 X-Complaints-To: abuse@xs4all.nl Xref: csiph.com comp.lang.python:94379 On 2015-07-22 16:50, Grant Edwards wrote: > On 2015-07-22, MRAB wrote: >> On 2015-07-22 16:27, Antoon Pardon wrote: >> >>> Does the same condition hold for strings? If you are not performing string >>> operations on something, it is not a string? >> >> Tkinter comes to mind. You specify how widgets are laid out strings >> that are basically flags: >> >> text_widget.pack(side=LEFT, fill=BOTH, expand=YES) >> >> where LEFT, BOTH and YES are strings. > > That's Tcl's fault. They have to be passed to Tcl, and Tcl only has > one data type: strings. > But _I'm_ writing in Python. Do I have to know how Tcl works underneath?