[issue1497] Patch to remove API to create new unbound methods

2007-12-21 Thread Georg Brandl
Georg Brandl added the comment: As far as I can see, not really. -- status: pending - closed __ Tracker [EMAIL PROTECTED] http://bugs.python.org/issue1497 __ ___ Python-bugs-list

[issue1497] Patch to remove API to create new unbound methods

2007-12-20 Thread Christian Heimes
Christian Heimes added the comment: Georg, do we need more docs? -- assignee: tiran - georg.brandl __ Tracker [EMAIL PROTECTED] http://bugs.python.org/issue1497 __ ___

[issue1497] Patch to remove API to create new unbound methods

2007-11-30 Thread Guido van Rossum
Guido van Rossum added the comment: Reducing priority and changing assignee since this is now just waiting for a doc update. -- assignee: gvanrossum - tiran priority: high - low __ Tracker [EMAIL PROTECTED] http://bugs.python.org/issue1497

[issue1497] Patch to remove API to create new unbound methods

2007-11-27 Thread Christian Heimes
Christian Heimes added the comment: Guido van Rossum wrote: - Please clean up the comment in classobject.c starting with Method objects are used for one purposes: -- to begin with, one purposes is ungrammatical. Best to remove the (a) bullet and rephrase the whole thing more like Method

[issue1497] Patch to remove API to create new unbound methods

2007-11-27 Thread Christian Heimes
Christian Heimes added the comment: I've committed the changes in r59189. The documentation still needs updates. I had only time to fix some of the docs. -- resolution: - fixed status: open - pending __ Tracker [EMAIL PROTECTED]

[issue1497] Patch to remove API to create new unbound methods

2007-11-26 Thread Christian Heimes
Christian Heimes added the comment: The new patch adds new.boundcfunction as a replacement for new.instancemethod(id, None, cls). I'm going to add docs if you like the approach. Added file: http://bugs.python.org/file8810/py3k_remove_newunbound2.patch __ Tracker

[issue1497] Patch to remove API to create new unbound methods

2007-11-26 Thread Georg Brandl
Georg Brandl added the comment: Note though that the new module was deprecated once... __ Tracker [EMAIL PROTECTED] http://bugs.python.org/issue1497 __ ___ Python-bugs-list mailing list

[issue1497] Patch to remove API to create new unbound methods

2007-11-26 Thread Guido van Rossum
Guido van Rossum added the comment: OK. Some code review comments: - Please clean up the comment in classobject.c starting with Method objects are used for one purposes: -- to begin with, one purposes is ungrammatical. Best to remove the (a) bullet and rephrase the whole thing more like Method

[issue1497] Patch to remove API to create new unbound methods

2007-11-25 Thread Christian Heimes
Changes by Christian Heimes: -- components: Interpreter Core files: py3k_remove_newunbound.patch keywords: patch, py3k nosy: georg.brandl, tiran priority: high severity: normal status: open title: Patch to remove API to create new unbound methods versions: Python 3.0 Added file: