This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author vstinner
Recipients brett.cannon, larry, pitrou, python-dev, vstinner, yselivanov
Date 2013-01-29.21:38:38
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1359495518.82.0.0897569957205.issue17071@psf.upfronthosting.co.za>
In-reply-to
Content
self doesn't need to have a name, you can use:

def bind(*args, **kw):
  self = args[0]
  args = args[1:]

To accept any name ;-)
History
Date User Action Args
2013-01-29 21:38:38vstinnersetrecipients: + vstinner, brett.cannon, pitrou, larry, python-dev, yselivanov
2013-01-29 21:38:38vstinnersetmessageid: <1359495518.82.0.0897569957205.issue17071@psf.upfronthosting.co.za>
2013-01-29 21:38:38vstinnerlinkissue17071 messages
2013-01-29 21:38:38vstinnercreate