Fix regex strings in tests and docs
rougeth opened this issue · 0 comments
rougeth commented
Strings are interpreted as Unicode strings in Python 3, in cases like handlers.regex('\d+', numbers)
(docs/handlers.rst) the \
is treated as an escaped Unicode character. In this cases, raw string must be used.