json-repair 0.12.0__tar.gz → 0.12.1__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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: json_repair
3
- Version: 0.12.0
3
+ Version: 0.12.1
4
4
  Summary: A package to repair broken json strings
5
5
  Author-email: Stefano Baccianella <4247706+mangiucugna@users.noreply.github.com>
6
6
  License: MIT License
@@ -3,7 +3,7 @@ requires = ["setuptools>=61.0"]
3
3
  build-backend = "setuptools.build_meta"
4
4
  [project]
5
5
  name = "json_repair"
6
- version = "0.12.0"
6
+ version = "0.12.1"
7
7
  license = {file = "LICENSE"}
8
8
  authors = [
9
9
  { name="Stefano Baccianella", email="4247706+mangiucugna@users.noreply.github.com" },
@@ -246,9 +246,9 @@ class JSONParser:
246
246
  if char != rstring_delimiter:
247
247
  self.insert_char_at(rstring_delimiter)
248
248
  else:
249
- if double_double_quotes:
250
- self.index += 1
251
249
  self.index += 1
250
+ if double_double_quotes and self.get_char_at() == '"':
251
+ self.index += 1
252
252
 
253
253
  return self.json_str[start:end]
254
254
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: json_repair
3
- Version: 0.12.0
3
+ Version: 0.12.1
4
4
  Summary: A package to repair broken json strings
5
5
  Author-email: Stefano Baccianella <4247706+mangiucugna@users.noreply.github.com>
6
6
  License: MIT License
@@ -107,6 +107,7 @@ def test_repair_json():
107
107
  assert repair_json('{"key\_1\n": "value"}') == '{"key_1\\n": "value"}'
108
108
  assert repair_json('{"key\t\_": "value"}') == '{"key\\t_": "value"}'
109
109
  assert repair_json('{""answer"":[{""traits"":""Female aged 60+"",""answer1"":""5""}]}') == '{"answer": [{"traits": "Female aged 60+", "answer1": "5"}]}'
110
+ assert repair_json('{""answer":[{""traits":""Female aged 60+",""answer1":""5"}]}') == '{"answer": [{"traits": "Female aged 60+", "answer1": "5"}]}'
110
111
  assert repair_json('{"key":"",}') == '{"key": ",}"}'
111
112
 
112
113
 
File without changes
File without changes
File without changes