Fix some stuff to make parso work again.

This commit is contained in:
Dave Halter
2017-06-02 00:00:31 +02:00
parent af26cc9f05
commit e0485b032e
6 changed files with 11 additions and 9 deletions

View File

@@ -12,6 +12,6 @@ import pytest
])
def test_equals(source):
script = Script(source)
node = script._get_module_node().children[0].children[0]
node = script._get_module_node().children[0]
first, = script._get_module().eval_node(node)
assert isinstance(first, CompiledObject) and first.obj is True