29 lines
824 B
Python
29 lines
824 B
Python
"""
|
|
Auto-generated Python stub file from new_test.py
|
|
Module: new_test
|
|
"""
|
|
|
|
|
|
import stdio
|
|
import t, c
|
|
|
|
class WithNew:
|
|
value: t.CInt
|
|
def __new__(self: WithNew, v: t.CInt) -> t.CInt: pass
|
|
def __init__(self: WithNew, v: t.CInt) -> t.CInt: pass
|
|
def GetValue(self: WithNew) -> t.CInt: pass
|
|
class WithNewNoArgs:
|
|
value: t.CInt
|
|
def __new__(self: WithNewNoArgs) -> t.CInt: pass
|
|
def __init__(self: WithNewNoArgs, v: t.CInt) -> t.CInt: pass
|
|
def GetValue(self: WithNewNoArgs) -> t.CInt: pass
|
|
@t.CVTable
|
|
class WithNewVTable:
|
|
value: t.CInt
|
|
def __new__(self: WithNewVTable, v: t.CInt) -> t.CInt: pass
|
|
def __init__(self: WithNewVTable, v: t.CInt) -> t.CInt: pass
|
|
def GetValue(self: WithNewVTable) -> t.CInt: pass
|
|
def Speak(self: WithNewVTable) -> t.CInt: pass
|
|
|
|
def new_test() -> int: pass
|