Re: [Python-Dev] Draft proposal: Implicit self in Python 3.0
by "Martin v. Löwis" other posts by this author
Jan 8 2006 3:04AM messages near this date
Re: [Python-Dev] Draft proposal: Implicit self in Python 3.0
|
[Python-Dev] Buildbot questions
Ian Bicking wrote:
> would have to be translated to this this:
>
> inst = Foo()
> f = Foo.bar
> meth = bind(f, inst)
> print meth(1, 2)
+1 for an explicit "bind unbound method operation", although I
would spell it as
inst = Foo()
f = Foo.bar
meth = f.bind(inst)
print meth(1, 2)
Regards,
Martin
_______________________________________________
Python-Dev mailing list
Python-Dev@[...].org
http://mail.python.org/mailman/listinfo/python-dev
Unsubscribe: http://mail.python.org/mailman/options/python-dev/python-dev-ml%40activestate.c
om
Thread:
Alexander Kozlovsky
Ralf W. Grosse-Kunstleve
Ian Bicking
Thomas Wouters
Tim Peters
Brett Cannon
Fredrik Lundh
Ralf W. Grosse-Kunstleve
Samuele Pedroni
Fredrik Lundh
Ralf W. Grosse-Kunstleve
Thomas Wouters
Ralf W. Grosse-Kunstleve
Phillip J. Eby
Thomas Wouters
Fredrik Lundh
Armin Rigo
Guido van Rossum
Ralf W. Grosse-Kunstleve
"Martin v. Löwis"
"Martin v. Löwis"
Kay Schluehr
Guido van Rossum
Thomas Wouters
Phillip J. Eby
"Martin v. Löwis"
Thomas Wouters
"Martin v. Löwis"
Thomas Wouters
Tim Peters
Ian Bicking
Thomas Wouters
Ian Bicking
Samuele Pedroni
Kay Schluehr
Alexander Kozlovsky
Jim Jewett
Fabien Schwob
Kay Schluehr
Nick Coghlan
Ian Bicking
"Martin v. Löwis"
|