summaryrefslogtreecommitdiff
path: root/tools/find_deprecated_escaped_characters.py
Commit message (Collapse)AuthorAgeFilesLines
* MAINT: Refactor tools/find_deprecated_escaped_characters.pyCharles Harris2017-02-251-25/+23
| | | | Make the code a bit cleaner.
* MAINT: Fix deprecated escape sequences in tools/Charles Harris2017-02-251-2/+2
| | | | | | Fix the escape sequences deprecated in Python 3.6 found in the tools directory. Note that this does not include the files in tools/swig/tests which are not even Python 3 compatible at this point.
* ENH: Add tool to check for deprecated escaped characters.Charles Harris2017-02-241-0/+69
Python 3.6 deprecates a number of escaped characters that were accepted before. For instance, '\(' was previously accepted but must now be written as '\\(' or r'\('. [ci skip]