Sorry, I meant the input of cPickle.loads()
El 27/08/2014, a las 18:02, Hernán Foffani escribió:
> Thanks for the str() workaround; haven’t thought of it.
> Same thing with the output of b64decode.
>
>
> El 27/08/2014, a las 17:53, Pawel Jasinski
> escribió:
>
>> BytesConversion on argumen
Thanks for the str() workaround; haven’t thought of it.
Same thing with the output of b64decode.
El 27/08/2014, a las 17:53, Pawel Jasinski escribió:
> BytesConversion on argument fixes it:
>
> public static object b2a_base64([BytesConversion]string data)
>
> Short term workaround, try addin
BytesConversion on argument fixes it:
public static object b2a_base64([BytesConversion]string data)
Short term workaround, try adding str() around an argument
On Wed, Aug 27, 2014 at 5:17 PM, Slide wrote:
> Can you file an issue on ironpython.codeplex.com?
>
>
> On Wed, Aug 27, 2014 at 7:53
Sure!
https://ironpython.codeplex.com/workitem/35507
> Can you file an issue on ironpython.codeplex.com?
>
>
> On Wed, Aug 27, 2014 at 7:53 AM, Hernán Foffani wrote:
> Hi,
> This works on CPython but on IronPython throws an exception in
> base64.b64encode.
>
> from __future__ import print_f
Can you file an issue on ironpython.codeplex.com?
On Wed, Aug 27, 2014 at 7:53 AM, Hernán Foffani wrote:
> Hi,
> This works on CPython but on IronPython throws an exception in
> base64.b64encode.
>
> from __future__ import print_function
>
> import cPickle
> import bz2
> import base64
>
> def s
Hi,
This works on CPython but on IronPython throws an exception in base64.b64encode.
from __future__ import print_function
import cPickle
import bz2
import base64
def serializa(o):
s1 = cPickle.dumps(o)
s2 = bz2.compress(s1)
s = base64.b64encode(s2)
return s
def deserializa(s):
o
Hi ironpython,
Here's your Daily Digest of new issues for project "IronPython".
In today's digest:ISSUES
1. [New issue] "No module named ..." exception in multi threading environment
--
ISSUES
1. [New issue] "No module named ..." exception in multi