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 christian.heimes
Recipients christian.heimes, collinwinter, gvanrossum
Date 2007-11-30.20:23:29
SpamBayes Score 0.058217153
Marked as misclassified No
Message-id <1196454209.34.0.587982775237.issue1504@psf.upfronthosting.co.za>
In-reply-to
Content
Some cases aren't covered by the fixer. I'm not sure if we need fixers
for two cases:

Python 2.x:
Cls.method = types.MethodType(function, None, Cls)
Python 3.0:
Cls.method = function

Python 2.x:
instance.method = types.MethodType(function, instance, instance.__class__)
Python 3.0:
instance.method = types.MethodType(function, instance)
History
Date User Action Args
2007-11-30 20:23:29christian.heimessetspambayes_score: 0.0582172 -> 0.058217153
recipients: + christian.heimes, gvanrossum, collinwinter
2007-11-30 20:23:29christian.heimessetspambayes_score: 0.0582172 -> 0.0582172
messageid: <1196454209.34.0.587982775237.issue1504@psf.upfronthosting.co.za>
2007-11-30 20:23:29christian.heimeslinkissue1504 messages
2007-11-30 20:23:29christian.heimescreate