Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.lang.python > #65163 > unrolled thread
| Started by | Ben Finney <ben+python@benfinney.id.au> |
|---|---|
| First post | 2014-02-01 13:10 +1100 |
| Last post | 2014-02-01 13:10 +1100 |
| Articles | 1 — 1 participant |
Back to article view | Back to comp.lang.python
This discussion starts older than the indexed window; earlier articles aren't shown. The article labeled Started by
below is the oldest one visible, not the original post.
Re: __init__ is the initialiser Ben Finney <ben+python@benfinney.id.au> - 2014-02-01 13:10 +1100
| From | Ben Finney <ben+python@benfinney.id.au> |
|---|---|
| Date | 2014-02-01 13:10 +1100 |
| Subject | Re: __init__ is the initialiser |
| Message-ID | <mailman.6241.1391220636.18130.python-list@python.org> |
Ethan Furman <ethan@stoneleaf.us> writes:
> On 01/31/2014 03:47 PM, Ben Finney wrote:
> > I suggest:
> >
> > Called automatically by the constructor “__new__” during
> > instance creation, to initialise the new instance.
>
> But __new__ does not call __init__, type does [1].
My apologies, you're right and that's made clear at
<URL:file:///usr/share/doc/python3.3/html/reference/datamodel.html#object.__new__>.
Try:
object.__init__(self[, …])
Called automatically after the constructor “__new__”, during
instance creation, to initialise the new instance.
--
\ “Software patents provide one more means of controlling access |
`\ to information. They are the tool of choice for the internet |
_o__) highwayman.” —Anthony Taylor |
Ben Finney
Back to top | Article view | comp.lang.python
csiph-web