mirror of
https://github.com/pocketpy/pocketpy
synced 2025-11-09 05:00:17 +00:00
fix.
This commit is contained in:
parent
3f697c16c6
commit
bc7e973f48
2
.gitignore
vendored
2
.gitignore
vendored
@ -4,7 +4,7 @@ __pycache__/
|
|||||||
.DS_Store
|
.DS_Store
|
||||||
.coverage
|
.coverage
|
||||||
.idea
|
.idea
|
||||||
.cache/
|
.cache/clangd/
|
||||||
|
|
||||||
gmon.out
|
gmon.out
|
||||||
gprof.txt
|
gprof.txt
|
||||||
|
|||||||
@ -484,12 +484,12 @@ public:
|
|||||||
void __prepare_py_call(PyVar*, ArgsView, ArgsView, const FuncDecl_&);
|
void __prepare_py_call(PyVar*, ArgsView, ArgsView, const FuncDecl_&);
|
||||||
void __unpack_as_list(ArgsView args, List& list);
|
void __unpack_as_list(ArgsView args, List& list);
|
||||||
void __unpack_as_dict(ArgsView args, Dict& dict);
|
void __unpack_as_dict(ArgsView args, Dict& dict);
|
||||||
void __raise_exc(bool re_raise=false);
|
[[noreturn]] void __raise_exc(bool re_raise=false);
|
||||||
void __init_builtin_types();
|
void __init_builtin_types();
|
||||||
void __post_init_builtin_types();
|
void __post_init_builtin_types();
|
||||||
void __builtin_error(StrName type);
|
[[noreturn]] void __builtin_error(StrName type);
|
||||||
void __builtin_error(StrName type, PyVar arg);
|
[[noreturn]] void __builtin_error(StrName type, PyVar arg);
|
||||||
void __builtin_error(StrName type, const Str& msg);
|
[[noreturn]] void __builtin_error(StrName type, const Str& msg);
|
||||||
void __push_varargs(){}
|
void __push_varargs(){}
|
||||||
void __push_varargs(PyVar _0){ PUSH(_0); }
|
void __push_varargs(PyVar _0){ PUSH(_0); }
|
||||||
void __push_varargs(PyVar _0, PyVar _1){ PUSH(_0); PUSH(_1); }
|
void __push_varargs(PyVar _0, PyVar _1){ PUSH(_0); PUSH(_1); }
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user