Path: csiph.com!usenet.pasdenom.info!weretis.net!feeder1.news.weretis.net!feeder.erje.net!eu.feeder.erje.net!xlned.com!feeder1.xlned.com!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.018 X-Spam-Evidence: '*H*': 0.96; '*S*': 0.00; 'subject:Python': 0.05; 'python': 0.09; 'ide': 0.09; 'str,': 0.09; 'guys,': 0.16; 'string': 0.17; 'wrote:': 0.17; 'question.': 0.20; 'default,': 0.22; 'init': 0.22; "i'd": 0.22; 'header:In-Reply-To:1': 0.25; 'header:User-Agent:1': 0.26; 'am,': 0.27; "i'm": 0.29; 'expect': 0.31; 'code': 0.31; 'int': 0.33; 'null': 0.33; 'to:addr:python- list': 0.33; 'filter': 0.35; 'should': 0.36; 'subject:: ': 0.38; 'to:addr:python.org': 0.39; 'received:192': 0.39; 'called': 0.39; 'received:192.168': 0.40; 'email addr:gmail.com': 0.63; 'received:74.208': 0.71; 'seldom': 0.84 Date: Sun, 24 Feb 2013 17:47:26 -0500 From: Dave Angel User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:17.0) Gecko/20130106 Thunderbird/17.0.2 MIME-Version: 1.0 To: python-list@python.org Subject: Re: Python Newbie References: <5127848B.1060004@gmail.com> <928d2cf7-728b-4f35-b8c9-4c9b958507e5@googlegroups.com> <8eadd52c-d533-4333-8c7f-7bf3a6d7b046@googlegroups.com> <9p1ii899tkalvfd1cl7sneoqa9t1cqh4oj@invalid.netcom.com> <5129482F.3080402@gmail.com> In-Reply-To: Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Provags-ID: V02:K0:CjLCAuZ2aYTjRTrhyx7IaMZx9f4VL7omH6rbdqeKwXk W4mI1vvQkqNGrwH582uiX7/tN/KhlfS+iM3OPsUfuJdKCVsi2v Hl0VGaXs5v3//wCJPWOVTajOrzm1W5B3HxwhH1amda/sAPxf70 CjYwq8X+OB+B55FzgumDRIEna9AFQoRkbBihU5WrYyauSKA3mX 470UpRDm4r+1vD96egnvowGrYe/KXnzvHNm3xBEGmCBg2M0V72 uddLdX3De9Dw1gHcCPSwBeKJVlmvGwSI4ql/FvLYlnEQb4H9Zo 5kW3y8Y/t5J+2b3217GOjwyEZEJN7rC1AyTEPZCyH3P1pzx2g= = 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: 19 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1361746071 news.xs4all.nl 6931 [2001:888:2000:d::a6]:36184 X-Complaints-To: abuse@xs4all.nl Xref: csiph.com comp.lang.python:39811 On 02/24/2013 10:46 AM, piterrr.dolinski@gmail.com wrote: > Hi guys, > > Question. Have this code > > intX = 32 # decl + init int var > intX_asString = None # decl + init with NULL string var None is not a str, and it's not a "NULL string var" Perhaps what you want is intX_asString = "" > I am using a Python IDE called PyScripter. Its Intellisense is full > of methods starting and ending with "__", hence the question. I'm surprised; I'd expect the Intellisense to filter those out by default, since people seldom should call them. -- DaveA