Initial Query
I want to call some C code from python on a linux machine. Specifically, I want to be able to run
python3 -c 'import magic; print(magic.do_add(3, 4))'
and have it give me the sum of these numbers. Here, do_add should be a C function that adds two integers.
Please give me a complete set of instructions for how to make this run, so that when I run this code as-is it will work.
LLM Generation
Query
I want to call some C code from python on a linux machine. Specifically, I want to be able to run
python3 -c 'import magic; print(magic.do_add(3, 4))'
and have it give me the sum of these numbers. Here, do_add should be a C function that adds two integers.
Please give me a complete set of instructions for how to make this run, so that when I run this code as-is it will work.
Output
To call C code from Python on a Linux machine, you can use the `ctypes` library or create a Python extension using the Python C API. Here, I'll guide you through creating a Python extension with a C function that adds two integers.
### Step-by-Step Instructions
#### 1. Write the C Code
Create a file named `magicmodule.c` with the following content:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30 | #include <Python.h>
// Function to add two integers
static PyObject* do_add(PyObject* self, PyObject* args) {
int a, b;
if (!PyArg_ParseTuple(args, "ii", &a, &b)) {
return NULL;
}
return PyLong_FromLong(a + b);
}
// Method definitions
static PyMethodDef MagicMethods[] = {
{"do_add", do_add, METH_VARARGS, "Add two integers"},
{NULL, NULL, 0, NULL}
};
// Module definition
static struct PyModuleDef magicmodule = {
PyModuleDef_HEAD_INIT,
"magic",
NULL,
-1,
MagicMethods
};
// Module initialization function
PyMODINIT_FUNC PyInit_magic(void) {
return PyModule_Create(&magicmodule);
}
|
#### 2. Create a Setup Script
Create a file named `setup.py` with the following content:
| from setuptools import setup, Extension
module = Extension('magic', sources=['magicmodule.c'])
setup(
name='magic',
version='1.0',
description='A simple Python module with a C extension',
ext_modules=[module]
)
|
#### 3. Build the Extension
Open a terminal and navigate to the directory containing `magicmodule.c` and `setup.py`. Run the following command to build the extension:
This will create a `build` directory containing the compiled extension.
#### 4. Install the Extension
To install the extension, run:
This will install the `magic` module, making it available for import in your Python scripts.
#### 5. Test the Extension
Now you can test the extension by running the following command:
| python3 -c 'import magic; print(magic.do_add(3, 4))'
|
If everything is set up correctly, this should print `7`.
### Summary
You've created a Python extension using C, built it, installed it, and tested it. The `magic` module now contains a `do_add` function that adds two integers, and you can call this function from Python.
LLM Generation
Query
Now please conver this answer into a JSON array that packages it all up so I don't need to think and can just copy files to specific locations and then run things. Format your answer
{"path/to/file": "contents of C file",
"path/to/python_file": "contents of any necessary python file that exposes do_add",
"build.sh": "contents of a bash file to build the project",
... # any other files necessary
}
The only thing I will do is put files in the right place and run `bash build.sh`. Do not give any explanation of the code. ONLY ANSWER WITH A SINGLE JSON OBJECT. Your answer should start
.
Output
| {
"magicmodule.c": "#include <Python.h>\n\n// Function to add two integers\nstatic PyObject* do_add(PyObject* self, PyObject* args) {\n int a, b;\n if (!PyArg_ParseTuple(args, \"ii\", &a, &b)) {\n return NULL;\n }\n return PyLong_FromLong(a + b);\n}\n\n// Method definitions\nstatic PyMethodDef MagicMethods[] = {\n {\"do_add\", do_add, METH_VARARGS, \"Add two integers\"},\n {NULL, NULL, 0, NULL}\n};\n\n// Module definition\nstatic struct PyModuleDef magicmodule = {\n PyModuleDef_HEAD_INIT,\n \"magic\",\n NULL,\n -1,\n MagicMethods\n};\n\n// Module initialization function\nPyMODINIT_FUNC PyInit_magic(void) {\n return PyModule_Create(&magicmodule);\n}",
"setup.py": "from setuptools import setup, Extension\n\nmodule = Extension('magic', sources=['magicmodule.c'])\n\nsetup(\n name='magic',\n version='1.0',\n description='A simple Python module with a C extension',\n ext_modules=[module]\n)",
"build.sh": "#!/bin/bash\n\npython3 setup.py build\npython3 setup.py install"
}
|
Extract Json
I extracted the following JSON from that output:
| {
"magicmodule.c": "#include <Python.h>\n\n// Function to add two integers\nstatic PyObject* do_add(PyObject* self, PyObject* args) {\n int a, b;\n if (!PyArg_ParseTuple(args, \"ii\", &a, &b)) {\n return NULL;\n }\n return PyLong_FromLong(a + b);\n}\n\n// Method definitions\nstatic PyMethodDef MagicMethods[] = {\n {\"do_add\", do_add, METH_VARARGS, \"Add two integers\"},\n {NULL, NULL, 0, NULL}\n};\n\n// Module definition\nstatic struct PyModuleDef magicmodule = {\n PyModuleDef_HEAD_INIT,\n \"magic\",\n NULL,\n -1,\n MagicMethods\n};\n\n// Module initialization function\nPyMODINIT_FUNC PyInit_magic(void) {\n return PyModule_Create(&magicmodule);\n}",
"setup.py": "from setuptools import setup, Extension\n\nmodule = Extension('magic', sources=['magicmodule.c'])\n\nsetup(\n name='magic',\n version='1.0',\n description='A simple Python module with a C extension',\n ext_modules=[module]\n)",
"build.sh": "#!/bin/bash\n\npython3 setup.py build\npython3 setup.py install"
}
|
UNKNOWN NODE TYPE:
PyFunc
final: True
/usr/lib/python3/dist-packages/setuptools/command/install.py:34: SetuptoolsDeprecationWarning: setup.py install is deprecated. Use build and pip and other standards-based tools.
warnings.warn(
/usr/lib/python3/dist-packages/setuptools/command/easy_install.py:158: EasyInstallDeprecationWarning: easy_install command is deprecated. Use build and pip and other standards-based tools.
warnings.warn(
zip_safe flag not set; analyzing archive contents...
__pycache__.magic.cpython-310: module references __file__
Resulting in output:
True
Initial Query
I want to call some C code from python on a linux machine. Specifically, I want to be able to run
python3 -c 'import magic; print(magic.do_add(3, 4))'
and have it give me the sum of these numbers. Here, do_add should be a C function that adds two integers.
Please give me a complete set of instructions for how to make this run, so that when I run this code as-is it will work.
LLM Generation
Query
I want to call some C code from python on a linux machine. Specifically, I want to be able to run
python3 -c 'import magic; print(magic.do_add(3, 4))'
and have it give me the sum of these numbers. Here, do_add should be a C function that adds two integers.
Please give me a complete set of instructions for how to make this run, so that when I run this code as-is it will work.
Output
To achieve this, you'll need to create a shared library from your C code and then use the `ctypes` library in Python to call the C function. Here's a step-by-step guide:
1. **Create a C file (let's call it `magic.c`)** with the following content:
| #include <stdio.h>
int do_add(int a, int b) {
return a + b;
}
|
2. **Compile the C code into a shared library**. You can do this using `gcc`:
| gcc -shared -o libmagic.so -fPIC magic.c
|
This command will create a shared library named `libmagic.so`.
3. **Create a Python script (let's call it `magic.py`)** that uses `ctypes` to load the shared library and call the `do_add` function:
| import ctypes
# Load the shared library
libmagic = ctypes.CDLL('./libmagic.so')
# Define the argument and return types of the C function
libmagic.do_add.argtypes = [ctypes.c_int, ctypes.c_int]
libmagic.do_add.restype = ctypes.c_int
def do_add(a, b):
return libmagic.do_add(a, b)
|
4. **Make sure the shared library is in the same directory as your Python script**, or provide the full path to the library in the `ctypes.CDLL` call.
5. **Run your Python command**:
| python3 -c 'import magic; print(magic.do_add(3, 4))'
|
This should print `7`, the sum of 3 and 4.
Here's a summary of the file structure:
| .
├── libmagic.so # The compiled shared library
├── magic.c # The C source code
└── magic.py # The Python script
|
And the commands you need to run:
| gcc -shared -o libmagic.so -fPIC magic.c
python3 -c 'import magic; print(magic.do_add(3, 4))'
|
This should give you the desired output.
LLM Generation
Query
Now please conver this answer into a JSON array that packages it all up so I don't need to think and can just copy files to specific locations and then run things. Format your answer
{"path/to/file": "contents of C file",
"path/to/python_file": "contents of any necessary python file that exposes do_add",
"build.sh": "contents of a bash file to build the project",
... # any other files necessary
}
The only thing I will do is put files in the right place and run `bash build.sh`. Do not give any explanation of the code. ONLY ANSWER WITH A SINGLE JSON OBJECT. Your answer should start
.
Output
| {
"magic.c": "#include <stdio.h>\nint do_add(int a, int b) {\n return a + b;\n}",
"magic.py": "import ctypes\n\n# Load the shared library\nlibmagic = ctypes.CDLL('./libmagic.so')\n\n# Define the argument and return types of the C function\nlibmagic.do_add.argtypes = [ctypes.c_int, ctypes.c_int]\nlibmagic.do_add.restype = ctypes.c_int\n\ndef do_add(a, b):\n return libmagic.do_add(a, b)",
"build.sh": "gcc -shared -o libmagic.so -fPIC magic.c",
"run.sh": "python3 -c 'import magic; print(magic.do_add(3, 4))'"
}
|
Extract Json
I extracted the following JSON from that output:
| {
"magic.c": "#include <stdio.h>\nint do_add(int a, int b) {\n return a + b;\n}",
"magic.py": "import ctypes\n\n# Load the shared library\nlibmagic = ctypes.CDLL('./libmagic.so')\n\n# Define the argument and return types of the C function\nlibmagic.do_add.argtypes = [ctypes.c_int, ctypes.c_int]\nlibmagic.do_add.restype = ctypes.c_int\n\ndef do_add(a, b):\n return libmagic.do_add(a, b)",
"build.sh": "gcc -shared -o libmagic.so -fPIC magic.c",
"run.sh": "python3 -c 'import magic; print(magic.do_add(3, 4))'"
}
|
UNKNOWN NODE TYPE:
PyFunc
final: True
Resulting in output:
True
Initial Query
I want to call some C code from python on a linux machine. Specifically, I want to be able to run
python3 -c 'import magic; print(magic.do_add(3, 4))'
and have it give me the sum of these numbers. Here, do_add should be a C function that adds two integers.
Please give me a complete set of instructions for how to make this run, so that when I run this code as-is it will work.
LLM Generation
Query
I want to call some C code from python on a linux machine. Specifically, I want to be able to run
python3 -c 'import magic; print(magic.do_add(3, 4))'
and have it give me the sum of these numbers. Here, do_add should be a C function that adds two integers.
Please give me a complete set of instructions for how to make this run, so that when I run this code as-is it will work.
Output
To call C code from Python on a Linux machine, you can use the `ctypes` module, which allows you to call functions in DLLs/shared libraries. Here is a step-by-step guide to achieve your goal:
1. **Write the C function**:
Create a C file (e.g., `magic.c`) with the `do_add` function.
| // magic.c
#include <stdio.h>
int do_add(int a, int b) {
return a + b;
}
|
2. **Compile the C code into a shared library**:
Use the `gcc` compiler to create a shared library from the C code.
| gcc -c -fPIC magic.c -o magic.o
gcc -shared -o libmagic.so magic.o
|
This will generate a shared library named `libmagic.so`.
3. **Write the Python code to call the C function**:
Create a Python file (e.g., `magic.py`) to load the shared library and call the C function.
1
2
3
4
5
6
7
8
9
10
11
12
13 | # magic.py
import ctypes
# Load the shared library
libmagic = ctypes.CDLL('./libmagic.so')
# Define the argument and return types of the C function
libmagic.do_add.argtypes = (ctypes.c_int, ctypes.c_int)
libmagic.do_add.restype = ctypes.c_int
def do_add(a, b):
return libmagic.do_add(a, b)
|
4. **Run the Python command**:
Execute the Python command to import the `magic` module and call the `do_add` function.
| python3 -c 'import magic; print(magic.do_add(3, 4))'
|
### Complete Set of Instructions
1. **Create the C file (`magic.c`)**:
| #include <stdio.h>
int do_add(int a, int b) {
return a + b;
}
|
2. **Compile the C code into a shared library**:
| gcc -c -fPIC magic.c -o magic.o
gcc -shared -o libmagic.so magic.o
|
3. **Create the Python file (`magic.py`)**:
1
2
3
4
5
6
7
8
9
10
11
12 | import ctypes
# Load the shared library
libmagic = ctypes.CDLL('./libmagic.so')
# Define the argument and return types of the C function
libmagic.do_add.argtypes = (ctypes.c_int, ctypes.c_int)
libmagic.do_add.restype = ctypes.c_int
def do_add(a, b):
return libmagic.do_add(a, b)
|
4. **Run the Python command**:
| python3 -c 'import magic; print(magic.do_add(3, 4))'
|
By following these steps, you should be able to run the given Python command and get the sum of the numbers `3` and `4`.
LLM Generation
Query
Now please conver this answer into a JSON array that packages it all up so I don't need to think and can just copy files to specific locations and then run things. Format your answer
{"path/to/file": "contents of C file",
"path/to/python_file": "contents of any necessary python file that exposes do_add",
"build.sh": "contents of a bash file to build the project",
... # any other files necessary
}
The only thing I will do is put files in the right place and run `bash build.sh`. Do not give any explanation of the code. ONLY ANSWER WITH A SINGLE JSON OBJECT. Your answer should start
.
Output
| {
"magic.c": "#include <stdio.h>\n\nint do_add(int a, int b) {\n return a + b;\n}",
"magic.py": "import ctypes\n\n# Load the shared library\nlibmagic = ctypes.CDLL('./libmagic.so')\n\n# Define the argument and return types of the C function\nlibmagic.do_add.argtypes = (ctypes.c_int, ctypes.c_int)\nlibmagic.do_add.restype = ctypes.c_int\n\ndef do_add(a, b):\n return libmagic.do_add(a, b)",
"build.sh": "gcc -c -fPIC magic.c -o magic.o\ngcc -shared -o libmagic.so magic.o"
}
|
Extract Json
I extracted the following JSON from that output:
| {
"magic.c": "#include <stdio.h>\n\nint do_add(int a, int b) {\n return a + b;\n}",
"magic.py": "import ctypes\n\n# Load the shared library\nlibmagic = ctypes.CDLL('./libmagic.so')\n\n# Define the argument and return types of the C function\nlibmagic.do_add.argtypes = (ctypes.c_int, ctypes.c_int)\nlibmagic.do_add.restype = ctypes.c_int\n\ndef do_add(a, b):\n return libmagic.do_add(a, b)",
"build.sh": "gcc -c -fPIC magic.c -o magic.o\ngcc -shared -o libmagic.so magic.o"
}
|
UNKNOWN NODE TYPE:
PyFunc
final: True
Resulting in output:
True
Initial Query
I want to call some C code from python on a linux machine. Specifically, I want to be able to run
python3 -c 'import magic; print(magic.do_add(3, 4))'
and have it give me the sum of these numbers. Here, do_add should be a C function that adds two integers.
Please give me a complete set of instructions for how to make this run, so that when I run this code as-is it will work.
LLM Generation
Query
I want to call some C code from python on a linux machine. Specifically, I want to be able to run
python3 -c 'import magic; print(magic.do_add(3, 4))'
and have it give me the sum of these numbers. Here, do_add should be a C function that adds two integers.
Please give me a complete set of instructions for how to make this run, so that when I run this code as-is it will work.
Output
Sure, I'll guide you through the process of creating a C extension for Python that can be called from Python code. We'll create a simple C extension that defines a function `do_add` which adds two integers.
### Step-by-Step Instructions
#### 1. Create the C Extension Code
Create a file named `magic.c` with the following content:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33 | #include <Python.h>
// Function to add two integers
static PyObject* do_add(PyObject* self, PyObject* args) {
int a;
int b;
if (!PyArg_ParseTuple(args, "ii", &a, &b)) {
return NULL; // Invalid arguments
}
return PyLong_FromLong(a + b);
}
// Method definitions
static PyMethodDef MagicMethods[] = {
{"do_add", do_add, METH_VARARGS, "Add two integers"},
{NULL, NULL, 0, NULL}
};
// Module definition
static struct PyModuleDef magicmodule = {
PyModuleDef_HEAD_INIT,
"magic",
NULL,
-1,
MagicMethods
};
// Module initialization function
PyMODINIT_FUNC PyInit_magic(void) {
return PyModule_Create(&magicmodule);
}
|
#### 2. Create the Setup Script
Create a file named `setup.py` with the following content:
| from setuptools import setup, Extension
magic_module = Extension('magic',
sources=['magic.c'])
setup(name='magic',
version='1.0',
description='Python wrapper for C add function',
ext_modules=[magic_module])
|
#### 3. Build the Extension
Run the following command to build the C extension:
| python3 setup.py build_ext --inplace
|
This command will compile the C code and create a shared object file that can be imported as a Python module.
#### 4. Test the Extension
Now you can run your Python command to test the extension:
| python3 -c 'import magic; print(magic.do_add(3, 4))'
|
### Explanation
1. **magic.c**: This file contains the C code for the extension. It defines a function `do_add` that takes two integers and returns their sum. The `PyMethodDef` structure defines the methods that will be available in the Python module, and `PyModuleDef` defines the module itself.
2. **setup.py**: This script uses `setuptools` to build the C extension. The `Extension` class is used to define the extension module, and `setup` is called to build it.
3. **Building the Extension**: The `python3 setup.py build_ext --inplace` command compiles the C code and creates a shared object file (e.g., `magic.so`) that can be imported in Python.
4. **Testing**: The `python3 -c 'import magic; print(magic.do_add(3, 4))'` command imports the `magic` module and calls the `do_add` function, which should print `7`.
That's it! You now have a working C extension that you can call from Python.
LLM Generation
Query
Now please conver this answer into a JSON array that packages it all up so I don't need to think and can just copy files to specific locations and then run things. Format your answer
{"path/to/file": "contents of C file",
"path/to/python_file": "contents of any necessary python file that exposes do_add",
"build.sh": "contents of a bash file to build the project",
... # any other files necessary
}
The only thing I will do is put files in the right place and run `bash build.sh`. Do not give any explanation of the code. ONLY ANSWER WITH A SINGLE JSON OBJECT. Your answer should start
.
Output
| {
"magic.c": "#include <Python.h>\n\n// Function to add two integers\nstatic PyObject* do_add(PyObject* self, PyObject* args) {\n int a;\n int b;\n\n if (!PyArg_ParseTuple(args, \"ii\", &a, &b)) {\n return NULL; // Invalid arguments\n }\n\n return PyLong_FromLong(a + b);\n}\n\n// Method definitions\nstatic PyMethodDef MagicMethods[] = {\n {\"do_add\", do_add, METH_VARARGS, \"Add two integers\"},\n {NULL, NULL, 0, NULL}\n};\n\n// Module definition\nstatic struct PyModuleDef magicmodule = {\n PyModuleDef_HEAD_INIT,\n \"magic\",\n NULL,\n -1,\n MagicMethods\n};\n\n// Module initialization function\nPyMODINIT_FUNC PyInit_magic(void) {\n return PyModule_Create(&magicmodule);\n}",
"setup.py": "from setuptools import setup, Extension\n\nmagic_module = Extension('magic',\n sources=['magic.c'])\n\nsetup(name='magic',\n version='1.0',\n description='Python wrapper for C add function',\n ext_modules=[magic_module])",
"build.sh": "#!/bin/bash\npython3 setup.py build_ext --inplace"
}
|
Extract Json
I extracted the following JSON from that output:
| {
"magic.c": "#include <Python.h>\n\n// Function to add two integers\nstatic PyObject* do_add(PyObject* self, PyObject* args) {\n int a;\n int b;\n\n if (!PyArg_ParseTuple(args, \"ii\", &a, &b)) {\n return NULL; // Invalid arguments\n }\n\n return PyLong_FromLong(a + b);\n}\n\n// Method definitions\nstatic PyMethodDef MagicMethods[] = {\n {\"do_add\", do_add, METH_VARARGS, \"Add two integers\"},\n {NULL, NULL, 0, NULL}\n};\n\n// Module definition\nstatic struct PyModuleDef magicmodule = {\n PyModuleDef_HEAD_INIT,\n \"magic\",\n NULL,\n -1,\n MagicMethods\n};\n\n// Module initialization function\nPyMODINIT_FUNC PyInit_magic(void) {\n return PyModule_Create(&magicmodule);\n}",
"setup.py": "from setuptools import setup, Extension\n\nmagic_module = Extension('magic',\n sources=['magic.c'])\n\nsetup(name='magic',\n version='1.0',\n description='Python wrapper for C add function',\n ext_modules=[magic_module])",
"build.sh": "#!/bin/bash\npython3 setup.py build_ext --inplace"
}
|
UNKNOWN NODE TYPE:
PyFunc
final: True
Resulting in output:
True
Initial Query
I want to call some C code from python on a linux machine. Specifically, I want to be able to run
python3 -c 'import magic; print(magic.do_add(3, 4))'
and have it give me the sum of these numbers. Here, do_add should be a C function that adds two integers.
Please give me a complete set of instructions for how to make this run, so that when I run this code as-is it will work.
LLM Generation
Query
I want to call some C code from python on a linux machine. Specifically, I want to be able to run
python3 -c 'import magic; print(magic.do_add(3, 4))'
and have it give me the sum of these numbers. Here, do_add should be a C function that adds two integers.
Please give me a complete set of instructions for how to make this run, so that when I run this code as-is it will work.
Output
To achieve this, you can create a shared library in C and then use Python's `ctypes` module to call the C function from Python. Here's a step-by-step guide:
1. **Create a C file (e.g., `magic.c`) with the following content:**
| #include <stdio.h>
int do_add(int a, int b) {
return a + b;
}
|
2. **Compile the C file as a shared library:**
Open your terminal and navigate to the directory containing `magic.c`. Then run the following command to compile the file as a shared library:
| gcc -shared -o libmagic.so -fPIC magic.c
|
This will generate a file named `libmagic.so`.
3. **Create a Python wrapper using `ctypes`:**
Create a new Python file (e.g., `magic.py`) in the same directory with the following content:
| import ctypes
# Load the shared library
libmagic = ctypes.CDLL('./libmagic.so')
# Define the argument and return types of the C function
libmagic.do_add.argtypes = (ctypes.c_int, ctypes.c_int)
libmagic.do_add.restype = ctypes.c_int
def do_add(a, b):
return libmagic.do_add(a, b)
|
4. **Test the setup:**
Now you can run the desired Python command:
| python3 -c 'import magic; print(magic.do_add(3, 4))'
|
This should print `7`, which is the sum of 3 and 4.
That's it! You have successfully created a C shared library and called its function from Python.
LLM Generation
Query
Now please conver this answer into a JSON array that packages it all up so I don't need to think and can just copy files to specific locations and then run things. Format your answer
{"path/to/file": "contents of C file",
"path/to/python_file": "contents of any necessary python file that exposes do_add",
"build.sh": "contents of a bash file to build the project",
... # any other files necessary
}
The only thing I will do is put files in the right place and run `bash build.sh`. Do not give any explanation of the code. ONLY ANSWER WITH A SINGLE JSON OBJECT. Your answer should start
.
Output
| {
"magic.c": "#include <stdio.h>\n\nint do_add(int a, int b) {\n return a + b;\n}",
"magic.py": "import ctypes\n\n# Load the shared library\nlibmagic = ctypes.CDLL('./libmagic.so')\n\n# Define the argument and return types of the C function\nlibmagic.do_add.argtypes = (ctypes.c_int, ctypes.c_int)\nlibmagic.do_add.restype = ctypes.c_int\n\ndef do_add(a, b):\n return libmagic.do_add(a, b)",
"build.sh": "gcc -shared -o libmagic.so -fPIC magic.c"
}
|
Extract Json
I extracted the following JSON from that output:
| {
"magic.c": "#include <stdio.h>\n\nint do_add(int a, int b) {\n return a + b;\n}",
"magic.py": "import ctypes\n\n# Load the shared library\nlibmagic = ctypes.CDLL('./libmagic.so')\n\n# Define the argument and return types of the C function\nlibmagic.do_add.argtypes = (ctypes.c_int, ctypes.c_int)\nlibmagic.do_add.restype = ctypes.c_int\n\ndef do_add(a, b):\n return libmagic.do_add(a, b)",
"build.sh": "gcc -shared -o libmagic.so -fPIC magic.c"
}
|
UNKNOWN NODE TYPE:
PyFunc
final: True
Resulting in output:
True