summaryrefslogtreecommitdiff
path: root/simplejson/__init__.py
diff options
context:
space:
mode:
authorBob Ippolito <bob@redivi.com>2009-02-16 01:14:13 +0000
committerBob Ippolito <bob@redivi.com>2009-02-16 01:14:13 +0000
commit3f349017d97fb9143fa55393d15540c547fe9411 (patch)
treec1a04ffed414d27b42bf7ad0ba10373245a42aed /simplejson/__init__.py
parentedb409fab04d0a5ff18eeb8f0225c5bd79fc5a25 (diff)
downloadsimplejson-3f349017d97fb9143fa55393d15540c547fe9411.tar.gz
verison number bump, change tests around to make it easier to backport to python stdlib
git-svn-id: http://simplejson.googlecode.com/svn/trunk@166 a4795897-2c25-0410-b006-0d3caba88fa1
Diffstat (limited to 'simplejson/__init__.py')
-rw-r--r--simplejson/__init__.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/simplejson/__init__.py b/simplejson/__init__.py
index c320c54..099f256 100644
--- a/simplejson/__init__.py
+++ b/simplejson/__init__.py
@@ -90,14 +90,14 @@ Specializing JSON object encoding::
Using simplejson.tool from the shell to validate and pretty-print::
- $ echo '{"json":"obj"}' | python -msimplejson.tool
+ $ echo '{"json":"obj"}' | python -m simplejson.tool
{
"json": "obj"
}
- $ echo '{ 1.2:3.4}' | python -msimplejson.tool
+ $ echo '{ 1.2:3.4}' | python -m simplejson.tool
Expecting property name: line 1 column 2 (char 2)
"""
-__version__ = '2.0.8'
+__version__ = '2.0.9'
__all__ = [
'dump', 'dumps', 'load', 'loads',
'JSONDecoder', 'JSONEncoder',