Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > comp.lang.python > #65236

Re: __init__ is the initialiser

Path csiph.com!v102.xanadu-bbs.net!xanadu-bbs.net!goblin1!goblin2!goblin.stu.neva.ru!newsfeed.xs4all.nl!newsfeed3.news.xs4all.nl!xs4all!post.news.xs4all.nl!not-for-mail
Return-Path <timothy.c.delaney@gmail.com>
X-Original-To python-list@python.org
Delivered-To python-list@mail.python.org
X-Spam-Status OK 0.141
X-Spam-Level *
X-Spam-Evidence '*H*': 0.72; '*S*': 0.00; 'bug': 0.12; 'language.': 0.14; 'discussed.': 0.16; 'semantics': 0.16; 'wrote:': 0.18; 'certainly': 0.24; 'header:In-Reply-To:1': 0.27; 'point': 0.28; 'tim': 0.29; 'message-id:@mail.gmail.com': 0.30; 'view.': 0.31; 'programmers': 0.33; 'to:name:python-list': 0.33; 'subject:the': 0.34; 'received:google.com': 0.35; 'should': 0.36; 'being': 0.38; 'to:addr:python-list': 0.38; 'to:addr:python.org': 0.39; 'either': 0.39; 'how': 0.40; 'ensure': 0.60; 'most': 0.60; 'skip:a 30': 0.61; 'valuable': 0.63; 'between': 0.67; 'batchelder': 0.84
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; bh=8wk2BH9BPg5EuLADF4TLPcpKU1ZCEVeYJvT+Ix7Vhg8=; b=EqMZjG/4IMx9BdF1OyAii/mUy45KVoS8QvWPob7e5XgrlWoTGjr6P26VbFhnY4YVQm 3aVFI9kpJlVAuYZNcxepB9I+ngev9tm6IRBBWx7LJAzAsthkO7+pz0HDdUP51ofIoxKw UmYLEsbK+R5axMIafGQgm3M2nSfMzfLeCH38OoSh0xsDbeHGF7S5phNayLnk90LMedoU pUl9Mq4zXnDQklF65HspRfZAr4P4ti26hnAxm563k6B8BQN+JC8cV257tBVZA7Hpre0W jDqDvUnhshUqkkjk8hWJVFYdtgiTDg5P0cMgQvVescsY/WeiSL9wP7L4lYjRixVmKKdv yjuA==
MIME-Version 1.0
X-Received by 10.182.142.37 with SMTP id rt5mr7732obb.76.1391285354813; Sat, 01 Feb 2014 12:09:14 -0800 (PST)
In-Reply-To <lcip84$sie$1@ger.gmane.org>
References <lcgtpf$tui$1@ger.gmane.org> <mailman.6217.1391197950.18130.python-list@python.org> <52ec6d1f$0$29972$c3e8da3$5496439d@news.astraweb.com> <lcip84$sie$1@ger.gmane.org>
Date Sun, 2 Feb 2014 07:09:14 +1100
Subject Re: __init__ is the initialiser
From Tim Delaney <timothy.c.delaney@gmail.com>
To Python-List <python-list@python.org>
Content-Type multipart/alternative; boundary=001a11c2ec9a5adfbf04f15dddf4
X-BeenThere python-list@python.org
X-Mailman-Version 2.1.15
Precedence list
List-Id General discussion list for the Python programming language <python-list.python.org>
List-Unsubscribe <https://mail.python.org/mailman/options/python-list>, <mailto:python-list-request@python.org?subject=unsubscribe>
List-Archive <http://mail.python.org/pipermail/python-list/>
List-Post <mailto:python-list@python.org>
List-Help <mailto:python-list-request@python.org?subject=help>
List-Subscribe <https://mail.python.org/mailman/listinfo/python-list>, <mailto:python-list-request@python.org?subject=subscribe>
Newsgroups comp.lang.python
Message-ID <mailman.6288.1391285364.18130.python-list@python.org> (permalink)
Lines 41
NNTP-Posting-Host 2001:888:2000:d::a6
X-Trace 1391285364 news.xs4all.nl 2917 [2001:888:2000:d::a6]:35610
X-Complaints-To abuse@xs4all.nl
Xref csiph.com comp.lang.python:65236

Show key headers only | View raw


[Multipart message — attachments visible in raw view] - view raw

On 1 February 2014 23:28, Ned Batchelder <ned@nedbatchelder.com> wrote:
>
> You are looking at things from an accurate-down-to-the-last-footnote
> detailed point of view (and have provided some footnotes!).  That's a very
> valuable and important point of view.  It's just not how most programmers
> approach the language.
>

This is the *language reference* that is being discussed. It documents the
intended semantics of the language. We most certainly should strive to
ensure that it is accurate-down-to-the-last-footnote - any difference
between the reference documentation and the implementation is a bug in
either the documentation or the implementation.

Tim Delaney

Back to comp.lang.python | Previous | NextPrevious in thread | Next in thread | Find similar | Unroll thread


Thread

Re: __init__ is the initialiser Ned Batchelder <ned@nedbatchelder.com> - 2014-01-31 14:52 -0500
  Re: __init__ is the initialiser Steven D'Aprano <steve+comp.lang.python@pearwood.info> - 2014-02-01 03:42 +0000
    Re: __init__ is the initialiser Chris Angelico <rosuav@gmail.com> - 2014-02-01 15:35 +1100
      Re: __init__ is the initialiser Steven D'Aprano <steve+comp.lang.python@pearwood.info> - 2014-02-01 05:51 +0000
        Re: __init__ is the initialiser Ethan Furman <ethan@stoneleaf.us> - 2014-02-01 00:28 -0800
    Re: __init__ is the initialiser Ethan Furman <ethan@stoneleaf.us> - 2014-01-31 20:55 -0800
    Re: __init__ is the initialiser Ned Batchelder <ned@nedbatchelder.com> - 2014-02-01 07:28 -0500
      Re: __init__ is the initialiser Roy Smith <roy@panix.com> - 2014-02-01 09:40 -0500
        Re: __init__ is the initialiser Mark Lawrence <breamoreboy@yahoo.co.uk> - 2014-02-01 15:07 +0000
          Re: __init__ is the initialiser Roy Smith <roy@panix.com> - 2014-02-01 11:17 -0500
    Re: __init__ is the initialiser Tim Delaney <timothy.c.delaney@gmail.com> - 2014-02-02 07:09 +1100
      Re: __init__ is the initialiser Steven D'Aprano <steve+comp.lang.python@pearwood.info> - 2014-02-02 01:28 +0000
    Re: __init__ is the initialiser Ben Finney <ben+python@benfinney.id.au> - 2014-02-02 15:27 +1100
    Re: __init__ is the initialiser Gregory Ewing <greg.ewing@canterbury.ac.nz> - 2014-02-03 12:38 +1300
      Re: __init__ is the initialiser Steven D'Aprano <steve+comp.lang.python@pearwood.info> - 2014-02-03 00:33 +0000
        Re: __init__ is the initialiser Gregory Ewing <greg.ewing@canterbury.ac.nz> - 2014-02-04 12:47 +1300
    Re: __init__ is the initialiser Tim Delaney <timothy.c.delaney@gmail.com> - 2014-02-03 11:02 +1100

csiph-web