Skip to content

Commit

Permalink
fixed warning @ python 3.7
Browse files Browse the repository at this point in the history
  • Loading branch information
goto40 committed Oct 15, 2018
1 parent bacd949 commit 2012a7f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/functional/test_regexp_with_groups.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,12 @@
grammar = r"""
Model: entries += Entry;
Entry:
'data' '=' data=/\"(?ms){3}(.*?)\"{3}/
'data' '=' data=/(?ms)\"{3}(.*?)\"{3}/
;
"""
grammar2 = r"""
Model:
'data' '=' data=/\"(?ms){3}(.*?)\"{3}\s*\-(\w+)\-/
'data' '=' data=/(?ms)\"{3}(.*?)\"{3}\s*\-(\w+)\-/
;
"""

Expand Down

0 comments on commit 2012a7f

Please sign in to comment.