[issue1493] Patch to remove unbound methods

2007-11-25 Thread Guido van Rossum
Guido van Rossum added the comment: On Nov 24, 2007 11:37 AM, Christian Heimes <[EMAIL PROTECTED]> wrote: > Do you still believe in the tooth fairy, too? :p Yes, and in the Easter Bunny, Santa Claus, and Sinterklaas. But in this particular case I believe in Kaboutertjes. (Dutch gnomes.) And it t

[issue1493] Patch to remove unbound methods

2007-11-25 Thread Christian Heimes
Christian Heimes added the comment: Fixed in r59183 unittest was pretty tricky. -- resolution: -> fixed status: open -> closed __ Tracker <[EMAIL PROTECTED]> __ __

[issue1493] Patch to remove unbound methods

2007-11-24 Thread Georg Brandl
Georg Brandl added the comment: I think it is correct -- normally the __get__ call gets a second argument of C. __ Tracker <[EMAIL PROTECTED]> __ ___ Pyt

[issue1493] Patch to remove unbound methods

2007-11-24 Thread Christian Heimes
Christian Heimes added the comment: Georg Brandl wrote: > Okay, got test_descr too -- the problem was introduced by the patch > itself :) Yes, I introduced the problem because I thought that sometimes is wrong here. The question mark in > doesn't look right. Christian _

[issue1493] Patch to remove unbound methods

2007-11-24 Thread Georg Brandl
Changes by Georg Brandl: Removed file: http://bugs.python.org/file8801/py3k_remove_unbound_3.patch __ Tracker <[EMAIL PROTECTED]> __ ___ Python-bugs-lis

[issue1493] Patch to remove unbound methods

2007-11-24 Thread Georg Brandl
Changes by Georg Brandl: Removed file: http://bugs.python.org/file8800/py3k_remove_unbound_2.patch __ Tracker <[EMAIL PROTECTED]> __ ___ Python-bugs-lis

[issue1493] Patch to remove unbound methods

2007-11-24 Thread Georg Brandl
Georg Brandl added the comment: Okay, got test_descr too -- the problem was introduced by the patch itself :) Added file: http://bugs.python.org/file8802/py3k_remove_unbound_4.patch __ Tracker <[EMAIL PROTECTED]> ___

[issue1493] Patch to remove unbound methods

2007-11-24 Thread Georg Brandl
Georg Brandl added the comment: Got test_typechecks too - the test is simply not applicable anymore. Added file: http://bugs.python.org/file8801/py3k_remove_unbound_3.patch __ Tracker <[EMAIL PROTECTED]>

[issue1493] Patch to remove unbound methods

2007-11-24 Thread Georg Brandl
Georg Brandl added the comment: Okay, this new patch takes care of test_pyclbr, test_inspect and test_weakref. test_unittest is a bit hard: previously, calling loadTestsFromName with the name of a method would create a test that runs that test case with that method being the test method. With t

[issue1493] Patch to remove unbound methods

2007-11-24 Thread Christian Heimes
Christian Heimes added the comment: Do you still believe in the tooth fairy, too? :p __ Tracker <[EMAIL PROTECTED]> __ ___ Python-bugs-list mailing list

[issue1493] Patch to remove unbound methods

2007-11-24 Thread Guido van Rossum
Guido van Rossum added the comment: I'm waiting for those failing tests to magically start passing. :-) __ Tracker <[EMAIL PROTECTED]> __ ___ Python-bugs

[issue1493] Patch to remove unbound methods

2007-11-23 Thread Christian Heimes
New submission from Christian Heimes: Here is a first patch to remove unbound method objects. 6 tests failed: test_descr test_inspect test_pyclbr test_typechecks test_unittest test_weakref -- assignee: gvanrossum components: Interpreter Core files: py3k_remove_unbound.patch keyw