Path: csiph.com!v102.xanadu-bbs.net!xanadu-bbs.net!usenet.blueworldhosting.com!feeder01.blueworldhosting.com!feeder.erje.net!eu.feeder.erje.net!news.stack.nl!newsfeed.xs4all.nl!newsfeed1.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.015 X-Spam-Evidence: '*H*': 0.97; '*S*': 0.00; 'subject:not': 0.03; "subject:' ": 0.07; '"is"': 0.16; '-tkc': 0.16; 'from:addr:python.list': 0.16; 'from:addr:tim.thechases.com': 0.16; 'from:name:tim chase': 0.16; 'singular': 0.16; ':-)': 0.16; 'wrote:': 0.18; "i've": 0.25; 'header:In-Reply-To:1': 0.27; "d'aprano": 0.31; 'steven': 0.31; 'charset:us-ascii': 0.36; 'to:addr:python-list': 0.38; 'to:addr:python.org': 0.39; 'changed': 0.39; 'simple': 0.61; 'received:50.22': 0.84; 'urge': 0.91 Date: Tue, 19 Aug 2014 05:36:16 -0500 From: Tim Chase To: python-list@python.org Subject: Re: 'is not' or '!=' In-Reply-To: <53f30c89$0$11123$c3e8da3@news.astraweb.com> References: <23643064-3716-49cb-87b8-a8c42f39feef@googlegroups.com> <53f30c89$0$11123$c3e8da3@news.astraweb.com> X-Mailer: Claws Mail 3.8.1 (GTK+ 2.24.10; x86_64-pc-linux-gnu) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-AntiAbuse: This header was added to track abuse, please include it with any abuse report X-AntiAbuse: Primary Hostname - boston.accountservergroup.com X-AntiAbuse: Original Domain - python.org X-AntiAbuse: Originator/Caller UID/GID - [47 12] / [47 12] X-AntiAbuse: Sender Address Domain - tim.thechases.com X-Get-Message-Sender-Via: boston.accountservergroup.com: authenticated_id: tim@thechases.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 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: 1408444676 news.xs4all.nl 2876 [2001:888:2000:d::a6]:53237 X-Complaints-To: abuse@xs4all.nl Xref: csiph.com comp.lang.python:76556 On 2014-08-19 08:36, Steven D'Aprano wrote: > The English word "is" is the third-person singular simple present > indicative form of "be", Am I the only one who feels the urge to write if i am some_other_object: ... if we are some_other_object: ... if u are some_other_object: ... # though txtspk bothers me instead of using "is" for reasons of grammatical correctness? I've changed variable-names to avoid this on occasion. :-) -tkc