[issue3056] Simplify the Integral ABC

2013-04-14 Thread Roundup Robot
Roundup Robot added the comment: New changeset 4678259af5a4 by Georg Brandl in branch '2.7': The Integral class does not contain implementations for the bit-shifting operations. (See #3056.) http://hg.python.org/cpython/rev/4678259af5a4 New changeset 1d4ba14cc505 by Georg Brandl in branch '3.3'

[issue3056] Simplify the Integral ABC

2011-04-12 Thread Raymond Hettinger
Raymond Hettinger added the comment: I've long since lost interest in this. If anyone wants to push it forward, feel free to re-open. -- resolution: -> out of date status: open -> closed ___ Python tracker ___

[issue3056] Simplify the Integral ABC

2011-03-22 Thread Raymond Hettinger
Changes by Raymond Hettinger : -- priority: normal -> low versions: +Python 3.3 -Python 2.6, Python 3.0 ___ Python tracker ___ ___ Pyth

[issue3056] Simplify the Integral ABC

2009-07-03 Thread Ezio Melotti
Ezio Melotti added the comment: Ping? -- nosy: +ezio.melotti priority: -> normal ___ Python tracker ___ ___ Python-bugs-list mailing

[issue3056] Simplify the Integral ABC

2008-06-29 Thread Jeffrey Yasskin
Jeffrey Yasskin <[EMAIL PROTECTED]> added the comment: Yeah, I'll take a look. Feel free to bug me if I haven't gotten to it in a couple more days. ___ Python tracker <[EMAIL PROTECTED]> __

[issue3056] Simplify the Integral ABC

2008-06-17 Thread Raymond Hettinger
Raymond Hettinger <[EMAIL PROTECTED]> added the comment: No problem. Whatever you think is best. Still hoping that Jeffrey can take a look at the mixin approach and the __rand__ logic. No one else seems to have an interest and I won't have time to write the tests for a few days (they are com

[issue3056] Simplify the Integral ABC

2008-06-17 Thread Guido van Rossum
Guido van Rossum <[EMAIL PROTECTED]> added the comment: Raymond, mind if we roll back your previous (incorrect) changes? They really should not have been submitted in the first place. ___ Python tracker <[EMAIL PROTECTED]> _

[issue3056] Simplify the Integral ABC

2008-06-17 Thread Raymond Hettinger
Raymond Hettinger <[EMAIL PROTECTED]> added the comment: Jeffrey, do you have an interest in taking it from here? -- assignee: rhettinger -> jyasskin nosy: +jyasskin ___ Python tracker <[EMAIL PROTECTED]> ___

[issue3056] Simplify the Integral ABC

2008-06-15 Thread Guido van Rossum
Changes by Guido van Rossum <[EMAIL PROTECTED]>: -- assignee: gvanrossum -> rhettinger ___ Python tracker <[EMAIL PROTECTED]> ___ ___ Py

[issue3056] Simplify the Integral ABC

2008-06-15 Thread Guido van Rossum
Guido van Rossum <[EMAIL PROTECTED]> added the comment: Mostly, but I *really* want to see unittests for this. ___ Python tracker <[EMAIL PROTECTED]> ___ ___

[issue3056] Simplify the Integral ABC

2008-06-15 Thread Raymond Hettinger
Raymond Hettinger <[EMAIL PROTECTED]> added the comment: Not much feedback on comp.lang.python. Does numbers3.diff look like what you had in mind? ___ Python tracker <[EMAIL PROTECTED]> __

[issue3056] Simplify the Integral ABC

2008-06-15 Thread Raymond Hettinger
Changes by Raymond Hettinger <[EMAIL PROTECTED]>: Added file: http://bugs.python.org/file10634/numbers3.diff ___ Python tracker <[EMAIL PROTECTED]> ___

[issue3056] Simplify the Integral ABC

2008-06-10 Thread Guido van Rossum
Guido van Rossum <[EMAIL PROTECTED]> added the comment: Not really, see the reply I sent to the checkin mail. ___ Python tracker <[EMAIL PROTECTED]> ___

[issue3056] Simplify the Integral ABC

2008-06-08 Thread Raymond Hettinger
Raymond Hettinger <[EMAIL PROTECTED]> added the comment: Is the patch good to go? ___ Python tracker <[EMAIL PROTECTED]> ___ ___ Python-bugs-list

[issue3056] Simplify the Integral ABC

2008-06-06 Thread Raymond Hettinger
Changes by Raymond Hettinger <[EMAIL PROTECTED]>: Added file: http://bugs.python.org/file10540/pep2.diff ___ Python tracker <[EMAIL PROTECTED]> ___

[issue3056] Simplify the Integral ABC

2008-06-06 Thread Raymond Hettinger
New submission from Raymond Hettinger <[EMAIL PROTECTED]>: * Reduce Integral to just a single additional abstract method. * Supply the binary operations as mixins instead of abstract methods. * Three argument __pow__ is now optional. * Convert with __int__ instead of __long__. -- assigne