summaryrefslogtreecommitdiff
path: root/tools/find_deprecated_escaped_characters.py
Commit message (Collapse)AuthorAgeFilesLines
* convert shebang from python to python3 (#15687)Changqing Li2020-03-041-1/+1
| | | | Signed-off-by: Changqing Li <changqing.li@windriver.com>
* MAINT: Remove unnecessary 'from __future__ import ...' statementsJon Dufresne2020-01-031-2/+0
| | | | | As numpy is Python 3 only, these import statements are now unnecessary and don't alter runtime behavior.
* 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]