Message7153

Author jeff.allen
Recipients fwierzbicki, jeff.allen, oscar
Date 2012-05-25.21:50:32
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1337982633.32.0.114968038855.issue1894@psf.upfronthosting.co.za>
In-reply-to
Content
There are so many things bytearray doesn't do yet (my bad), but I'm working on it. If it's any comfort:

>dist\bin\jython
Jython 2.7a1+ (, May 19 2012, 20:07:50)
[Java HotSpot(TM) 64-Bit Server VM (Sun Microsystems Inc.)] on java1.6.0_26
Type "help", "copyright", "credits" or "license" for more information.
>>> a=bytearray(b'01')
>>> b=bytearray(b'23')
>>> a+b
bytearray(b'0123')
>>>

I believe that is in the development tip now. The rest is coming, well, most of it. Great to know people want it.
History
Date User Action Args
2012-05-25 21:50:33jeff.allensetmessageid: <1337982633.32.0.114968038855.issue1894@psf.upfronthosting.co.za>
2012-05-25 21:50:33jeff.allensetrecipients: + jeff.allen, fwierzbicki, oscar
2012-05-25 21:50:33jeff.allenlinkissue1894 messages
2012-05-25 21:50:32jeff.allencreate