mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-27 19:28:58 +07:00
8 lines
126 B
Python
8 lines
126 B
Python
import dataclasses
|
|
|
|
@dataclasses.dataclass
|
|
class A1:
|
|
x: int = 0
|
|
y: dataclasses.InitVar[int] = 1
|
|
|
|
def __post<caret> |