From: Jeremy Stanley Date: Fri, 28 Jul 2017 20:03:58 +0000 (+0000) Subject: Use raw strings when escape sequences are needed X-Git-Tag: 0.0.1~155 X-Git-Url: https://mudpy.org/gitweb?p=mudpy.git;a=commitdiff_plain;h=7c003a0c7786083c6b0697d23b1b595dc70005bd;hp=7c003a0c7786083c6b0697d23b1b595dc70005bd 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. ---