Commit 47e0e022 authored by Jurriaan Bremer's avatar Jurriaan Bremer Committed by Dylan Trotter

make strings with spaces easier to read (#64)

parent b61ec8f0
......@@ -22,7 +22,7 @@ import string
import textwrap
_SIMPLE_CHARS = set(string.digits + string.letters + string.punctuation)
_SIMPLE_CHARS = set(string.digits + string.letters + string.punctuation + " ")
_ESCAPES = {'\t': r'\t', '\r': r'\r', '\n': r'\n', '"': r'\"'}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment