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)
commit7c003a0c7786083c6b0697d23b1b595dc70005bd
tree279798d39c7bcb9aba00845061030d2dfaed23b2
parenteb44bf1fb134133277139432a8dce72b9f38ba9d
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