summaryrefslogtreecommitdiff
path: root/index.rst
diff options
context:
space:
mode:
authorBob Ippolito <bob@redivi.com>2009-01-03 03:05:13 +0000
committerBob Ippolito <bob@redivi.com>2009-01-03 03:05:13 +0000
commitfb46282d18b65dcfa924d9c637351c0720bdacfc (patch)
tree03931bb7b550750c58d5798c38dffed6927fe5d1 /index.rst
parente1fee64efcae3f5601a567b8483715dadff76100 (diff)
downloadsimplejson-fb46282d18b65dcfa924d9c637351c0720bdacfc.tar.gz
yay whitespace and doctest
git-svn-id: http://simplejson.googlecode.com/svn/trunk@159 a4795897-2c25-0410-b006-0d3caba88fa1
Diffstat (limited to 'index.rst')
-rw-r--r--index.rst3
1 files changed, 2 insertions, 1 deletions
diff --git a/index.rst b/index.rst
index 87e8934..0c25930 100644
--- a/index.rst
+++ b/index.rst
@@ -44,7 +44,8 @@ Compact encoding::
Pretty printing::
>>> import simplejson as json
- >>> print json.dumps({'4': 5, '6': 7}, sort_keys=True, indent=4)
+ >>> s = json.dumps({'4': 5, '6': 7}, sort_keys=True, indent=4)
+ >>> print '\n'.join([l.rstrip() for l in s.splitlines()])
{
"4": 5,
"6": 7