Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
A
arpeggio-gm
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
backend
arpeggio-gm
Commits
ab924aea
Commit
ab924aea
authored
Aug 07, 2014
by
Igor Dejanovic
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix in regex rule naming.
parent
ff9ad67a
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
5 deletions
+5
-5
__init__.py
arpeggio/__init__.py
+4
-4
test_memoization.py
tests/unit/regressions/test_memoization.py
+1
-1
No files found.
arpeggio/__init__.py
View file @
ab924aea
...
@@ -125,7 +125,7 @@ class ParsingExpression(object):
...
@@ -125,7 +125,7 @@ class ParsingExpression(object):
@property
@property
def
name
(
self
):
def
name
(
self
):
if
self
.
root
:
if
self
.
root
:
return
"
%
s
(
%
s)
"
%
(
self
.
rule
,
self
.
__class__
.
__name__
)
return
"
%
s
=
%
s
"
%
(
self
.
rule
,
self
.
__class__
.
__name__
)
else
:
else
:
return
self
.
__class__
.
__name__
return
self
.
__class__
.
__name__
...
@@ -462,7 +462,7 @@ class Match(ParsingExpression):
...
@@ -462,7 +462,7 @@ class Match(ParsingExpression):
Base class for all classes that will try to match something from the input.
Base class for all classes that will try to match something from the input.
"""
"""
def
__init__
(
self
,
rule
,
root
=
False
):
def
__init__
(
self
,
rule
,
root
=
False
):
super
(
Match
,
self
)
.
__init__
(
rule
,
root
)
super
(
Match
,
self
)
.
__init__
(
rule
=
rule
,
root
=
root
)
@property
@property
def
name
(
self
):
def
name
(
self
):
...
@@ -495,8 +495,8 @@ class RegExMatch(Match):
...
@@ -495,8 +495,8 @@ class RegExMatch(Match):
Default is None to support propagation from global parser setting.
Default is None to support propagation from global parser setting.
'''
'''
def
__init__
(
self
,
to_match
,
rule
=
None
,
ignore_case
=
None
):
def
__init__
(
self
,
to_match
,
rule
=
None
,
root
=
False
,
ignore_case
=
None
):
super
(
RegExMatch
,
self
)
.
__init__
(
rule
)
super
(
RegExMatch
,
self
)
.
__init__
(
rule
,
root
)
self
.
to_match
=
to_match
self
.
to_match
=
to_match
self
.
ignore_case
=
ignore_case
self
.
ignore_case
=
ignore_case
...
...
tests/unit/regressions/test_memoization.py
View file @
ab924aea
...
@@ -42,6 +42,6 @@ def test_memoization_nomatch(capsys):
...
@@ -42,6 +42,6 @@ def test_memoization_nomatch(capsys):
parser
=
ParserPython
(
grammar
,
debug
=
True
)
parser
=
ParserPython
(
grammar
,
debug
=
True
)
parse_tree
=
parser
.
parse
(
"c"
)
parse_tree
=
parser
.
parse
(
"c"
)
assert
"Cache hit for [rule1
(Sequence)
, 0] = 'Expected 'grammar' at position (1, 1)"
in
capsys
.
readouterr
()[
0
]
assert
"Cache hit for [rule1
=Sequence
, 0] = 'Expected 'grammar' at position (1, 1)"
in
capsys
.
readouterr
()[
0
]
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment