[issue923643] long <-> byte-string conversion

2008-02-23 Thread Mark Dickinson
Mark Dickinson added the comment: pending -> closed. -- status: pending -> closed Tracker <[EMAIL PROTECTED]> ___ Python-bugs-list m

[issue923643] long <-> byte-string conversion

2008-01-28 Thread Mark Dickinson
Mark Dickinson added the comment: Closing this due to little-or-no activity for over three years. Antoine's use case seems to me to be covered by issue #1023290. Trevor, please speak up if you want to keep this alive. -- resolution: -> rejected status: open -> pending superseder: ->

[issue923643] long <-> byte-string conversion

2008-01-18 Thread Mark Dickinson
Mark Dickinson added the comment: It seems to me that this issue is almost entirely subsumed by issue #1023290. I'm quite tempted to close this and direct further discussion there---personally, I'd support Josiah's proposed struct addition. Paul: if you're still listening after all this ti

[issue923643] long <-> byte-string conversion

2008-01-13 Thread Antoine Pitrou
Antoine Pitrou added the comment: Unless I'm mistaken, the patch provides only half of the solution: the stringToLong part, but not longToString. I agree this feature is interesting, not for optimization but becomes it avoids using clunky ways (long -> hex -> bin) to implement something simple. H

[issue923643] long <-> byte-string conversion

2008-01-12 Thread Christian Heimes
Christian Heimes added the comment: Here is another integer related optimization patch from Trev. I've no opinion on the matter but you might be interested in it as well. -- assignee: -> marketdickinson nosy: +marketdickinson, tiran versions: +Python 2.6 -Python 2.4 ___