summaryrefslogtreecommitdiff
path: root/index.rst
diff options
context:
space:
mode:
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