mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-08 09:05:52 +07:00
9 lines
184 B
Python
9 lines
184 B
Python
__author__ = 'ktisha'
|
|
|
|
class A:
|
|
def __init__(self):
|
|
self.a = 1
|
|
|
|
def foo(self):
|
|
<weak_warning descr="Instance attribute b defined outside __init__">self.b</weak_warning>= 1
|