Merge pull request #1615 from Kodiologist/no-parser-cache
Disable the parser cache
This commit is contained in:
commit
e66743c976
@ -17,10 +17,7 @@ from .lexer import lexer
|
||||
from .exceptions import LexException, PrematureEndOfInput
|
||||
|
||||
|
||||
pg = ParserGenerator(
|
||||
[rule.name for rule in lexer.rules] + ['$end'],
|
||||
cache_id="hy_parser"
|
||||
)
|
||||
pg = ParserGenerator([rule.name for rule in lexer.rules] + ['$end'])
|
||||
|
||||
mangle_delim = 'X'
|
||||
|
||||
|
2
setup.py
2
setup.py
@ -30,7 +30,7 @@ class Install(install):
|
||||
"." + filename[:-len(".hy")])
|
||||
install.run(self)
|
||||
|
||||
install_requires = ['rply>=0.7.5', 'astor', 'funcparserlib>=0.3.6', 'clint>=0.4']
|
||||
install_requires = ['rply>=0.7.6', 'astor', 'funcparserlib>=0.3.6', 'clint>=0.4']
|
||||
if os.name == 'nt':
|
||||
install_requires.append('pyreadline>=2.1')
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user