JsonhPy 2.6__tar.gz → 2.7__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.
- {jsonhpy-2.6 → jsonhpy-2.7}/PKG-INFO +1 -1
- {jsonhpy-2.6 → jsonhpy-2.7}/pyproject.toml +1 -1
- {jsonhpy-2.6 → jsonhpy-2.7}/src/JsonhPy/JsonhPy.py +1 -1
- {jsonhpy-2.6 → jsonhpy-2.7}/src/JsonhPy.egg-info/PKG-INFO +1 -1
- {jsonhpy-2.6 → jsonhpy-2.7}/LICENSE.md +0 -0
- {jsonhpy-2.6 → jsonhpy-2.7}/README.md +0 -0
- {jsonhpy-2.6 → jsonhpy-2.7}/setup.cfg +0 -0
- {jsonhpy-2.6 → jsonhpy-2.7}/src/JsonhPy/__init__.py +0 -0
- {jsonhpy-2.6 → jsonhpy-2.7}/src/JsonhPy.egg-info/SOURCES.txt +0 -0
- {jsonhpy-2.6 → jsonhpy-2.7}/src/JsonhPy.egg-info/dependency_links.txt +0 -0
- {jsonhpy-2.6 → jsonhpy-2.7}/src/JsonhPy.egg-info/top_level.txt +0 -0
|
@@ -1668,7 +1668,7 @@ class JsonhReader:
|
|
|
1668
1668
|
case 'U':
|
|
1669
1669
|
return self._read_hex_escape_sequence(8, high_surrogate)
|
|
1670
1670
|
# Escaped newline
|
|
1671
|
-
case self._NEWLINE_CHARS:
|
|
1671
|
+
case _ if escape_char in self._NEWLINE_CHARS:
|
|
1672
1672
|
# Join CR LF
|
|
1673
1673
|
if escape_char == 'r':
|
|
1674
1674
|
self._read_one('\n')
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|