Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix for Python 3.7: re._pattern_type no longer exist #849

Merged
merged 4 commits into from
Nov 3, 2019

Commits on Oct 31, 2019

  1. fix for Python 3.7: re._pattern_type no longer exist

    * re._pattern_type was removed in Python 3.7. re.Pattern can be used
    instead.
    * Try re.Pattern first, and fall back to re._pattern_type otherwise.
    smola committed Oct 31, 2019
    Configuration menu
    Copy the full SHA
    181b96c View commit details
    Browse the repository at this point in the history

Commits on Nov 1, 2019

  1. Configuration menu
    Copy the full SHA
    4fc0f15 View commit details
    Browse the repository at this point in the history

Commits on Nov 2, 2019

  1. Configuration menu
    Copy the full SHA
    188e59f View commit details
    Browse the repository at this point in the history

Commits on Nov 3, 2019

  1. Update try..except block to if..else for performance

    * Also add check in test_series.py to check for supported behavior in
      regex.
    devin-petersohn committed Nov 3, 2019
    Configuration menu
    Copy the full SHA
    fb095d1 View commit details
    Browse the repository at this point in the history