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
3791d3ba
Commit
3791d3ba
authored
Dec 29, 2014
by
Igor Dejanovic
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixing default ws parameter.
parent
175c30a5
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
2 deletions
+5
-2
__init__.py
arpeggio/__init__.py
+5
-2
No files found.
arpeggio/__init__.py
View file @
3791d3ba
...
...
@@ -1120,7 +1120,7 @@ class Parser(object):
comments(list): A list of ParseTreeNode for matched comments.
"""
def
__init__
(
self
,
skipws
=
True
,
ws
=
DEFAULT_WS
,
reduce_tree
=
False
,
def
__init__
(
self
,
skipws
=
True
,
ws
=
None
,
reduce_tree
=
False
,
autokwd
=
False
,
ignore_case
=
False
,
debug
=
False
):
# Used to indicate state in which parser should not
...
...
@@ -1128,7 +1128,10 @@ class Parser(object):
self
.
_eolterm
=
False
self
.
skipws
=
skipws
self
.
ws
=
ws
if
ws
is
not
None
:
self
.
ws
=
ws
else
:
self
.
ws
=
DEFAULT_WS
self
.
reduce_tree
=
reduce_tree
self
.
autokwd
=
autokwd
self
.
ignore_case
=
ignore_case
...
...
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