mirror of
https://github.com/davidhalter/jedi.git
synced 2025-12-18 11:35:57 +08:00
Fix some stuff to make parso work again.
This commit is contained in:
@@ -11,7 +11,7 @@ from jedi import Script
|
||||
def test_paths_from_assignment():
|
||||
def paths(src):
|
||||
script = Script(src)
|
||||
expr_stmt = script._get_module_node().children[0].children[0]
|
||||
expr_stmt = script._get_module_node().children[0]
|
||||
return set(sys_path._paths_from_assignment(script._get_module(), expr_stmt))
|
||||
|
||||
assert paths('sys.path[0:0] = ["a"]') == set(['a'])
|
||||
|
||||
Reference in New Issue
Block a user