summaryrefslogtreecommitdiff
path: root/simplejson/decoder.py
diff options
context:
space:
mode:
authorBob Ippolito <bob@redivi.com>2009-03-28 05:48:29 +0000
committerBob Ippolito <bob@redivi.com>2009-03-28 05:48:29 +0000
commit0d9f46d682a4af5fff44c1d3b01fe2ff00599ec3 (patch)
tree1d03938076e9a43228f880ac25de3bec04fc9847 /simplejson/decoder.py
parentb943b2bb7fcecfefda78a24374b747d8590c8666 (diff)
downloadsimplejson-0d9f46d682a4af5fff44c1d3b01fe2ff00599ec3.tar.gz
tests and fix for containerless unicode float decoding http://code.google.com/p/simplejson/issues/detail?id=43
git-svn-id: http://simplejson.googlecode.com/svn/trunk@177 a4795897-2c25-0410-b006-0d3caba88fa1
Diffstat (limited to 'simplejson/decoder.py')
-rw-r--r--simplejson/decoder.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/simplejson/decoder.py b/simplejson/decoder.py
index 6df951b..90188a5 100644
--- a/simplejson/decoder.py
+++ b/simplejson/decoder.py
@@ -71,7 +71,7 @@ def py_scanstring(s, end, encoding=None, strict=True,
Unescapes all valid JSON string escape sequences and raises ValueError
on attempt to decode an invalid string. If strict is False then literal
control characters are allowed in the string.
-
+
Returns a tuple of the decoded string and the index of the character in s
after the end quote."""
if encoding is None: