mirror of
https://github.com/davidhalter/jedi.git
synced 2025-12-06 14:04:26 +08:00
Forgot to add some test files
This commit is contained in:
6
test/examples/inheritance/pkg/__init__.py
Normal file
6
test/examples/inheritance/pkg/__init__.py
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
from .module import Bar
|
||||||
|
|
||||||
|
|
||||||
|
class Foo(Bar):
|
||||||
|
def foo(self):
|
||||||
|
pass
|
||||||
4
test/examples/inheritance/pkg/module.py
Normal file
4
test/examples/inheritance/pkg/module.py
Normal file
@@ -0,0 +1,4 @@
|
|||||||
|
|
||||||
|
class Bar:
|
||||||
|
def bar(self):
|
||||||
|
pass
|
||||||
Reference in New Issue
Block a user