mirror of
https://github.com/davidhalter/jedi.git
synced 2025-12-08 23:04:48 +08:00
don't use json (doesn't work in py2.5), even if it's not relevant. fixes #94 again :-)
This commit is contained in:
@@ -323,7 +323,7 @@ class TestFeature(Base):
|
||||
assert self.complete('import os; os.path.join')[0].full_name \
|
||||
== 'os.path.join'
|
||||
# issue #94
|
||||
defs = self.get_def("""import json; json.load(""")
|
||||
defs = self.get_def("""import os; os.path.join(""")
|
||||
assert defs[0].full_name is None
|
||||
|
||||
def test_full_name_builtin(self):
|
||||
|
||||
Reference in New Issue
Block a user