コード例 #1
0
ファイル: a.py プロジェクト: sdr01810/intellij-idea-ce
from b import A

A().bar("5")
コード例 #2
0
from b import A

A().foo < caret > ("5")
コード例 #3
0
def main():
    for k in range(10): 
        print f(g(k))
    print A().h(8)
コード例 #4
0
from b import A

A().append()
#    <ref>
コード例 #5
0
from b import A, B

print(A(), B())
コード例 #6
0
ファイル: a.py プロジェクト: ikishore/intellij-community-1
from b import A

A().my_method(10)
コード例 #7
0
from b import A, B

<warning descr="'a' is 'Final' and could not be reassigned">A().a</warning> = 3
<warning descr="'b' is 'Final' and could not be reassigned">B().b</warning> = 3

class C(B):
    def __init__(self):
        super().__init__()
        <warning descr="'B.b' is 'Final' and could not be reassigned">self.b</warning> = 4

    def my_method(self):
        <warning descr="'B.b' is 'Final' and could not be reassigned">self.b</warning> = 5

<warning descr="'B.b' is 'Final' and could not be reassigned">C().b</warning> = 6