mirror of
https://github.com/davidhalter/jedi.git
synced 2025-12-08 14:54:47 +08:00
Add a failing test for an inheritanc context completion issue.
This commit is contained in:
@@ -291,3 +291,16 @@ elif 3 == flow_import.env:
|
|||||||
|
|
||||||
#? int() str()
|
#? int() str()
|
||||||
a
|
a
|
||||||
|
|
||||||
|
# -----------------
|
||||||
|
# Inheritance
|
||||||
|
# -----------------
|
||||||
|
|
||||||
|
class Super():
|
||||||
|
enabled = True
|
||||||
|
if enabled:
|
||||||
|
yo_dude = 4
|
||||||
|
|
||||||
|
class Sub(Super):
|
||||||
|
#? ['yo_dude']
|
||||||
|
yo_dud
|
||||||
|
|||||||
Reference in New Issue
Block a user