partialjson 0.0.3__tar.gz → 0.0.4__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {partialjson-0.0.3 → partialjson-0.0.4}/PKG-INFO +1 -1
- {partialjson-0.0.3 → partialjson-0.0.4}/partialjson/__init__.py +1 -1
- {partialjson-0.0.3 → partialjson-0.0.4}/partialjson/json_parser.py +2 -2
- {partialjson-0.0.3 → partialjson-0.0.4}/partialjson.egg-info/PKG-INFO +1 -1
- {partialjson-0.0.3 → partialjson-0.0.4}/LICENSE +0 -0
- {partialjson-0.0.3 → partialjson-0.0.4}/README.md +0 -0
- {partialjson-0.0.3 → partialjson-0.0.4}/partialjson.egg-info/SOURCES.txt +0 -0
- {partialjson-0.0.3 → partialjson-0.0.4}/partialjson.egg-info/dependency_links.txt +0 -0
- {partialjson-0.0.3 → partialjson-0.0.4}/partialjson.egg-info/top_level.txt +0 -0
- {partialjson-0.0.3 → partialjson-0.0.4}/setup.cfg +0 -0
- {partialjson-0.0.3 → partialjson-0.0.4}/setup.py +0 -0
|
@@ -33,9 +33,9 @@ class JSONParser:
|
|
|
33
33
|
self.last_parse_reminding = reminding
|
|
34
34
|
if self.on_extra_token and reminding:
|
|
35
35
|
self.on_extra_token(s, data, reminding)
|
|
36
|
-
return json.dumps(data)
|
|
36
|
+
return json.loads(json.dumps(data))
|
|
37
37
|
else:
|
|
38
|
-
return json.
|
|
38
|
+
return json.loads({})
|
|
39
39
|
|
|
40
40
|
def parse_any(self, s, e):
|
|
41
41
|
if not s:
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|