Use raw strings when escape sequences are needed
authorJeremy Stanley <fungi@yuggoth.org>
Fri, 28 Jul 2017 20:03:58 +0000 (20:03 +0000)
committerJeremy Stanley <fungi@yuggoth.org>
Fri, 28 Jul 2017 20:03:58 +0000 (20:03 +0000)
commit6a7d075307eefe14e440bb4fce6ab9e10838ce5a
tree279798d39c7bcb9aba00845061030d2dfaed23b2
parent5dc21185cb804d8993011f3cf37fc9e58e441a24
Use raw strings when escape sequences are needed

Python 3.6 has added a DeprecationWarning for any regular strings
containing non-doubled backslash escapes. Use raw strings for these
instead so we'll be ready when the old syntax is eventually
disallowed.
mudpy/data.py
mudpy/misc.py
mudpy/tests/selftest.py