There are bugs in the IronPython 2.6.1 json implementation that I believe
have been reported and will be fixed in 2.6.2. For instance, the following
gives me an exception:
json.loads(json.dumps(dict(test="test")))
I have had better luck with simplejson and
import simplejson as json
Tristan
On
On Fri, Jul 9, 2010 at 13:05, Marcin Krol wrote:
> Hello everyone,
>
> I have successfully used JSON as serialization protocol between various
> clients and servers in 2 projects, incl. Java app talking to Python servers,
> so I would like to use JSON in my upcoming C/S project as well: there's
>
Hello everyone,
I have successfully used JSON as serialization protocol between various
clients and servers in 2 projects, incl. Java app talking to Python
servers, so I would like to use JSON in my upcoming C/S project as well:
there's Json.NET, but how viable is using it in IronPython?
Doe