Path: csiph.com!v102.xanadu-bbs.net!xanadu-bbs.net!feeder.erje.net!eu.feeder.erje.net!weretis.net!feeder4.news.weretis.net!rt.uk.eu.org!newsfeed.xs4all.nl!newsfeed3.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.004 X-Spam-Evidence: '*H*': 0.99; '*S*': 0.00; 'subject: -- ': 0.07; 'spelling': 0.09; 'subject:question': 0.10; 'cc:addr:python-list': 0.11; 'clear.': 0.16; 'from:addr:pobox.com': 0.16; 'from:addr:skip': 0.16; 'instances,': 0.16; 'subject:class': 0.16; 'two.': 0.16; 'sender:addr:gmail.com': 0.17; 'cc:addr:python.org': 0.22; 'skip': 0.24; 'cc:2**0': 0.24; 'cc:no real name:2**0': 0.24; 'header:In-Reply-To:1': 0.27; 'besides': 0.30; 'mix': 0.30; 'message-id:@mail.gmail.com': 0.30; '(perhaps': 0.31; 'classes': 0.35; 'received:google.com': 0.35; 'subject:?': 0.36; 'list': 0.37; 'clear': 0.37; 'obvious': 0.74 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:x-received:sender:in-reply-to:references:date :x-google-sender-auth:message-id:subject:from:to:cc:content-type; bh=JStvD3Y2pNBG3l7bnriFnGYvhxjOETNEasd/COq2iKI=; b=g+8fonc4M+4EnfrOXgdq8XsPS1zc+ebk2yl2+WamTDq0ASYVPkMJQ+wAAmgmUMkI9W vnMMesaWcRDEtWyoUHzQBICuOAyFkxmJ0QeafCJUb6j1Ny3gNm/flRlWHEOgA5JrGheU Jxx+Xa8j2L1vRHDdW4IvT1SHevDzsDzD6FZyxXjh15Kq1yYH7sbNt/HTzoR35wFZb6kf BiA9uhCJhgQuwah4inA4T8kNVtpRNNjRSd1YnPz2+WRH4najzLJ3lwyBJDWwyCYP2Xql 5ojixTjQaEP0VhU6mFk4xB+UUE/lgDeQixoHbt1Tnen7R5/bdcHcje9pXc1mNdumjHa2 KhFA== MIME-Version: 1.0 X-Received: by 10.50.36.199 with SMTP id s7mr6608917igj.56.1368045188109; Wed, 08 May 2013 13:33:08 -0700 (PDT) Sender: skip.montanaro@gmail.com In-Reply-To: References: Date: Wed, 8 May 2013 15:33:07 -0500 X-Google-Sender-Auth: g1z_wgTRjyMV78n4_cPS5EzZuQc Subject: Re: Style question -- plural of class name? From: Skip Montanaro To: Roy Smith Content-Type: text/plain; charset=UTF-8 Cc: python-list@python.org 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: 10 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1368045196 news.xs4all.nl 15992 [2001:888:2000:d::a6]:60447 X-Complaints-To: abuse@xs4all.nl Xref: csiph.com comp.lang.python:44965 This one: > "A list of FooEntry instances" Besides the obvious spelling issues in the others, it's not immediately clear if the list contains just FooEntry instances, FooEntry classes (perhaps subclasses) or a mix of the two. #4 makes it clear. Skip