diff options
author | Bob Ippolito <bob@redivi.com> | 2008-05-03 17:54:12 +0000 |
---|---|---|
committer | Bob Ippolito <bob@redivi.com> | 2008-05-03 17:54:12 +0000 |
commit | 37594d7c05c0ceb30e3894950e33236aa07ebf73 (patch) | |
tree | 78a5b7e59ce9bd722babdcba44e3b290858a5472 /simplejson/__init__.py | |
parent | f750b9beae59bcc8b69fece978202f118c01535e (diff) | |
download | simplejson-37594d7c05c0ceb30e3894950e33236aa07ebf73.tar.gz |
convert test suite to unittest, remove jsonfilter, bump version to 0.9
git-svn-id: http://simplejson.googlecode.com/svn/trunk@85 a4795897-2c25-0410-b006-0d3caba88fa1
Diffstat (limited to 'simplejson/__init__.py')
-rw-r--r-- | simplejson/__init__.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/simplejson/__init__.py b/simplejson/__init__.py index 94b94f8..e06f533 100644 --- a/simplejson/__init__.py +++ b/simplejson/__init__.py @@ -67,7 +67,7 @@ Specializing JSON object decoding:: (1+2j) >>> import decimal >>> simplejson.loads('1.1', parse_float=decimal.Decimal) - decimal.Decimal(1.1) + Decimal("1.1") Extending JSONEncoder:: @@ -99,7 +99,7 @@ pretty-print:: Note that the JSON produced by this module's default settings is a subset of YAML, so it may be used as a serializer for that as well. """ -__version__ = '1.8.2' +__version__ = '1.9' __all__ = [ 'dump', 'dumps', 'load', 'loads', 'JSONDecoder', 'JSONEncoder', |