Merge pull request #1322 from kirbyfan64/new-rply

Update rply to 0.7.5
This commit is contained in:
gilch 2017-07-12 17:51:44 -06:00 committed by GitHub
commit 7d8ffc0181
2 changed files with 6 additions and 1 deletions

View File

@ -30,7 +30,7 @@ class Install(install):
"." + filename[:-len(".hy")])
install.run(self)
install_requires = ['rply>=0.7.0', 'astor>=0.5', 'clint>=0.4']
install_requires = ['rply>=0.7.5', 'astor>=0.5', 'clint>=0.4']
if os.name == 'nt':
install_requires.append('pyreadline>=2.1')

View File

@ -588,3 +588,8 @@ def test_setv_builtins():
(defn get [self] 42))
(defn if* [self] 0))
""")
def test_lots_of_comment_lines():
# https://github.com/hylang/hy/issues/1313
can_compile(1000 * ";\n")