summaryrefslogtreecommitdiff
path: root/scanner.py
diff options
context:
space:
mode:
authorAnthon van der Neut <anthon@mnt.org>2018-09-07 14:25:14 +0200
committerAnthon van der Neut <anthon@mnt.org>2018-09-07 14:25:14 +0200
commit55964d27ae6afdc11b74004e257c8834aead27e8 (patch)
treec92f865874ecc8d192f71521fceca05bc1696727 /scanner.py
parente9f456c03708ca2c1c7617cb8f1fd2ffe8a018d3 (diff)
downloadruamel.yaml-55964d27ae6afdc11b74004e257c8834aead27e8.tar.gz
fix issue #234 safe_load inserting a fold indicator character0.15.66
*When this change indeed resolves your problem, please **Close** this issue*. *(You can do so using the WorkFlow pull-down (close to the top right of this page))*
Diffstat (limited to 'scanner.py')
-rw-r--r--scanner.py23
1 files changed, 9 insertions, 14 deletions
diff --git a/scanner.py b/scanner.py
index bbd77d2..c3f691f 100644
--- a/scanner.py
+++ b/scanner.py
@@ -1132,7 +1132,7 @@ class Scanner(object):
end_mark = self.reader.get_mark()
return TagToken(value, start_mark, end_mark)
- def scan_block_scalar(self, style):
+ def scan_block_scalar(self, style, rt=False):
# type: (Any) -> Any
# See the specification for details.
srp = self.reader.peek
@@ -1193,14 +1193,9 @@ class Scanner(object):
#
# This is the folding according to the specification:
- if folded and line_break == '\n':
+ if rt and folded and line_break == '\n':
chunks.append('\a')
- if (
- folded
- and line_break == '\n'
- and leading_non_space
- and srp() not in ' \t'
- ):
+ if folded and line_break == '\n' and leading_non_space and srp() not in ' \t':
if not breaks:
chunks.append(' ')
else:
@@ -1611,9 +1606,7 @@ class Scanner(object):
line_break = self.scan_line_break()
self.allow_simple_key = True
prefix = self.reader.prefix(3)
- if (prefix == '---' or prefix == '...') and srp(
- 3
- ) in _THE_END_SPACE_TAB:
+ if (prefix == '---' or prefix == '...') and srp(3) in _THE_END_SPACE_TAB:
return
breaks = []
while srp() in ' \r\n\x85\u2028\u2029':
@@ -1622,9 +1615,7 @@ class Scanner(object):
else:
breaks.append(self.scan_line_break())
prefix = self.reader.prefix(3)
- if (prefix == '---' or prefix == '...') and srp(
- 3
- ) in _THE_END_SPACE_TAB:
+ if (prefix == '---' or prefix == '...') and srp(3) in _THE_END_SPACE_TAB:
return
if line_break != '\n':
chunks.append(line_break)
@@ -1940,6 +1931,10 @@ class RoundTripScanner(Scanner):
return ch
return ""
+ def scan_block_scalar(self, style):
+ # type: (Any) -> Any
+ return Scanner.scan_block_scalar(self, style, rt=True)
+
# try:
# import psyco