Most voted "python-c-api" questions
The Python API gives C and C++ programmers access to the Python interpreter on a variety of levels. Although it can be used with C++ it is common to refer to it as "Python/C API" (or "Python/C API").
Learn more…1 question
Sort by count of
-
0
votes0
answers42
viewsHow to make functions available in the "Python/C API"?
hello I am developing a python module and I have the following problem. When the module is compiled, only one function is available (fun1). how do I get fun2 stay available too? #define…