Skip to content

Commit

Permalink
[bootstrap] use generated parser that contains def for whitespace
Browse files Browse the repository at this point in the history
  • Loading branch information
apalala committed Nov 26, 2023
1 parent f5cdbdb commit da420eb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tatsu/bootstrap.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ def __init__(self, text, /, config: ParserConfig | None = None, **settings):
config = ParserConfig.new(
config,
owner=self,
whitespace=None,
whitespace=re.compile(r"\s+"),
nameguard=None,
ignorecase=False,
namechars='',
Expand All @@ -49,7 +49,7 @@ def __init__(self, /, config: ParserConfig | None = None, **settings):
config = ParserConfig.new(
config,
owner=self,
whitespace=None,
whitespace=re.compile(r"\s+"),
nameguard=None,
ignorecase=False,
namechars='',
Expand Down

0 comments on commit da420eb

Please sign in to comment.