Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | MAINT: Refactor tools/find_deprecated_escaped_characters.py | Charles Harris | 2017-02-25 | 1 | -25/+23 |
| | | | | Make the code a bit cleaner. | ||||
* | MAINT: Fix deprecated escape sequences in tools/ | Charles Harris | 2017-02-25 | 1 | -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 Harris | 2017-02-24 | 1 | -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] |