For Python 2.6 and above, use "json" module from stdlib instead of simplejson
-----------------------------------------------------------------------------

                 Key: AVRO-240
                 URL: https://issues.apache.org/jira/browse/AVRO-240
             Project: Avro
          Issue Type: Improvement
          Components: python
            Reporter: Jeff Hammerbacher


As described at 
http://bob.pythonmac.org/archives/2008/10/02/python-26-released-now-with-json/:

# Use simplejson or Python 2.6 json, prefer simplejson.
try:
    import simplejson as json
except ImportError:
    import json


-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.

Reply via email to