[Python-Dev] Let's get rid of unbound methods
Steven D'Aprano
steve at pearwood.info
Tue Jun 4 13:57:44 CEST 2013
More information about the Python-Dev mailing list
Tue Jun 4 13:57:44 CEST 2013
- Previous message: [Python-Dev] Let's get rid of unbound methods
- Next message: [Python-Dev] Putting the Mac Build in the Apple App Store
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
On 04/06/13 12:43, 探晴 wrote: <nothing> Your email appears to be blank, except for a large chunk of HTML code. Did you have something specific to say other than the subject line? As for unbound methods, Guido's time machine strikes again. They're already gone in Python 3. py> class X: ... def spam(self): ... pass ... py> X.spam <function spam at 0xb7bd2dac> py> X().spam <bound method X.spam of <__main__.X object at 0xb7bd0e0c>> -- Steven
- Previous message: [Python-Dev] Let's get rid of unbound methods
- Next message: [Python-Dev] Putting the Mac Build in the Apple App Store
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
More information about the Python-Dev mailing list