Free basic version

This commit is contained in:
AB
2019-09-12 00:03:58 +03:00
parent e2ba2c900e
commit 1dcd90ab28
30 changed files with 5729 additions and 3 deletions

9
sum.build/__helpers.h Normal file
View File

@@ -0,0 +1,9 @@
#ifndef __NUITKA_CALLS_H__
#define __NUITKA_CALLS_H__
extern PyObject *CALL_FUNCTION_WITH_ARGS1( PyObject *called, PyObject **args );
extern PyObject *CALL_FUNCTION_WITH_ARGS2( PyObject *called, PyObject **args );
extern PyObject *CALL_FUNCTION_WITH_ARGS3( PyObject *called, PyObject **args );
extern PyObject *CALL_FUNCTION_WITH_ARGS4( PyObject *called, PyObject **args );
extern PyObject *CALL_FUNCTION_WITH_ARGS5( PyObject *called, PyObject **args );
#endif