[issue2997] PyNumberMethods has left-over fields in Py3

2008-06-11 Thread Barry A. Warsaw
Changes by Barry A. Warsaw [EMAIL PROTECTED]: -- priority: critical - release blocker ___ Python tracker [EMAIL PROTECTED] http://bugs.python.org/issue2997 ___ ___

[issue2997] PyNumberMethods has left-over fields in Py3

2008-06-11 Thread Guido van Rossum
Guido van Rossum [EMAIL PROTECTED] added the comment: I say let's go with the cleanup. Extensions that want to be compiled under 2.x and 3.0 will need lots of #ifdef code anyway. -- nosy: +gvanrossum ___ Python tracker [EMAIL PROTECTED]

[issue2997] PyNumberMethods has left-over fields in Py3

2008-06-11 Thread Barry A. Warsaw
Changes by Barry A. Warsaw [EMAIL PROTECTED]: -- resolution: - accepted ___ Python tracker [EMAIL PROTECTED] http://bugs.python.org/issue2997 ___ ___ Python-bugs-list

[issue2997] PyNumberMethods has left-over fields in Py3

2008-06-11 Thread Benjamin Peterson
Changes by Benjamin Peterson [EMAIL PROTECTED]: ___ Python tracker [EMAIL PROTECTED] http://bugs.python.org/issue2997 ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue2997] PyNumberMethods has left-over fields in Py3

2008-06-11 Thread Benjamin Peterson
Changes by Benjamin Peterson [EMAIL PROTECTED]: -- assignee: - benjamin.peterson nosy: +benjamin.peterson ___ Python tracker [EMAIL PROTECTED] http://bugs.python.org/issue2997 ___

[issue2997] PyNumberMethods has left-over fields in Py3

2008-06-11 Thread Benjamin Peterson
Benjamin Peterson [EMAIL PROTECTED] added the comment: Applied in r64149. -- resolution: accepted - fixed status: open - closed ___ Python tracker [EMAIL PROTECTED] http://bugs.python.org/issue2997 ___

[issue2997] PyNumberMethods has left-over fields in Py3

2008-06-06 Thread Stefan Behnel
Stefan Behnel [EMAIL PROTECTED] added the comment: :) sorry, that's the problem when you don't have commit rights and leave the changes in your local copy. So this is still an open issue that should be fixed before beta1, thanks. ___ Python tracker [EMAIL

[issue2997] PyNumberMethods has left-over fields in Py3

2008-06-06 Thread Amaury Forgeot d'Arc
Amaury Forgeot d'Arc [EMAIL PROTECTED] added the comment: Let me quote a comment from GvR about the similar issue1185: Can you redo the patch while keeping the slot *position* (though not the name or type)? The wasted space is minimal (4-8 bytes per type or class object) and it means a lot

[issue2997] PyNumberMethods has left-over fields in Py3

2008-06-02 Thread Georg Brandl
Georg Brandl [EMAIL PROTECTED] added the comment: Not to me... -- nosy: +georg.brandl resolution: out of date - status: closed - open ___ Python tracker [EMAIL PROTECTED] http://bugs.python.org/issue2997 ___

[issue2997] PyNumberMethods has left-over fields in Py3

2008-06-01 Thread Stefan Behnel
Stefan Behnel [EMAIL PROTECTED] added the comment: This seems to have been applied in current SVN. ___ Python tracker [EMAIL PROTECTED] http://bugs.python.org/issue2997 ___ ___

[issue2997] PyNumberMethods has left-over fields in Py3

2008-05-29 Thread Stefan Behnel
New submission from Stefan Behnel [EMAIL PROTECTED]: Here is a patch that removes three unused fields from the PyNumberMethods struct in Py3. Since two fields were already removed (one even before the ones this patch removes), there is no way existing Py2 C code that uses this struct can work in