mirror of
https://github.com/davidhalter/jedi.git
synced 2026-01-02 18:23:23 +08:00
resolved little ordering problem
This commit is contained in:
@@ -104,7 +104,7 @@ class A(object):
|
||||
a.upper
|
||||
#? []
|
||||
a.append
|
||||
a = list
|
||||
a = list()
|
||||
def __init__(self):
|
||||
self.b = ""
|
||||
self.b = 3
|
||||
@@ -119,15 +119,21 @@ class A(object):
|
||||
|
||||
def before(self):
|
||||
self.a = 1
|
||||
#? int() str()
|
||||
#? list() str() int()
|
||||
self.a
|
||||
|
||||
#? ['after']
|
||||
self.after
|
||||
|
||||
self.c = 3
|
||||
#? set() int()
|
||||
self.c
|
||||
|
||||
def after(self):
|
||||
self.a = ''
|
||||
|
||||
c = set()
|
||||
|
||||
#? list()
|
||||
A.a
|
||||
|
||||
|
||||
Reference in New Issue
Block a user