Fix misaligned triple-quote blocks

This commit is contained in:
mayeut
2021-05-03 13:12:36 -04:00
committed by Henry Schreiner
parent 178aaea6c7
commit d1900f6a05
21 changed files with 154 additions and 158 deletions
+6 -6
View File
@@ -107,9 +107,9 @@ def test_binary_output():
'-c',
textwrap.dedent(
'''
import sys
sys.stdout.write(''.join(chr(n) for n in range(0, 256)))
'''
import sys
sys.stdout.write(''.join(chr(n) for n in range(0, 256)))
'''
),
]
)
@@ -121,9 +121,9 @@ def test_binary_output():
'-c',
textwrap.dedent(
'''
import sys
sys.stdout.write(''.join(chr(n % 256) for n in range(0, 512)))
'''
import sys
sys.stdout.write(''.join(chr(n % 256) for n in range(0, 512)))
'''
),
],
capture_output=True,