[Numpy-svn] [numpy/numpy] 579718: ENH: Add tool to check for deprecated escaped char...

GitHub noreply at github.com
Fri Feb 24 18:03:17 EST 2017


  Branch: refs/heads/master
  Home:   https://github.com/numpy/numpy
  Commit: 579718f1546df1e539cd2f7fbaf1617f06412eca
      https://github.com/numpy/numpy/commit/579718f1546df1e539cd2f7fbaf1617f06412eca
  Author: Charles Harris <charlesr.harris at gmail.com>
  Date:   2017-02-24 (Fri, 24 Feb 2017)

  Changed paths:
    A tools/find_deprecated_escaped_characters.py

  Log Message:
  -----------
  ENH: Add tool to check for deprecated escaped characters.

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]


  Commit: d7d3e212ce1ff176c718485aed889c77a48ef88f
      https://github.com/numpy/numpy/commit/d7d3e212ce1ff176c718485aed889c77a48ef88f
  Author: Charles Harris <charlesr.harris at gmail.com>
  Date:   2017-02-24 (Fri, 24 Feb 2017)

  Changed paths:
    M numpy/core/code_generators/genapi.py
    M numpy/lib/function_base.py

  Log Message:
  -----------
  MAINT: Fix use of Python 2.6 deprecated escape sequences.

Closes #8687.


  Commit: 3073627398ed4b4637e9bb8c19a3fe598ffc1680
      https://github.com/numpy/numpy/commit/3073627398ed4b4637e9bb8c19a3fe598ffc1680
  Author: Charles Harris <charlesr.harris at gmail.com>
  Date:   2017-02-24 (Fri, 24 Feb 2017)

  Changed paths:
    M numpy/core/code_generators/genapi.py
    M numpy/lib/function_base.py
    A tools/find_deprecated_escaped_characters.py

  Log Message:
  -----------
  Merge pull request #8384 from charris/add-escaped-character-check

ENH: Add tool to check for deprecated escaped characters.


Compare: https://github.com/numpy/numpy/compare/5f5ccecbfc11...3073627398ed


More information about the Numpy-svn mailing list