from __future__ import *

simplejson 2.0.9

February 18, 2009 at 04:00 PM | categories: python, simplejson | View Comments

simplejson (documentation) is a simple, fast, complete, correct and extensible JSON (RFC 4627) encoder/decoder for Python 2.4+. It is pure Python code with no dependencies, but features an optional C extension for speed-ups.

simplejson 2.0.9 is a major bug-fix update:

  • Adds cyclic GC to the Encoder and Scanner speedups, which could've caused uncollectible cycles in some cases when using custom parser or encoder functions
Read and Post Comments

simplejson 2.0.8

February 15, 2009 at 04:56 PM | categories: python, simplejson | View Comments

simplejson (documentation) is a simple, fast, complete, correct and extensible JSON (RFC 4627) encoder/decoder for Python 2.4+. It is pure Python code with no dependencies, but features an optional C extension for speed-ups.

simplejson 2.0.8 is a minor bug-fix update:

  • Documentation fixes
  • Fixes encoding True and False as keys
  • Fixes checking for True and False by identity for several parameters
Read and Post Comments