0
votes
1answer
43 views
Nested Python C Extensions/Modules?
How do I compile a C-Python module such that it is local to another? E.g. if I have a module named "bar" and another module named "mymodule", how do I compile "bar" so that it impo …
0
votes
2answers
206 views
Python C-API Object Initialisation
What is the correct way to initialise a python object into already existing memory (like the inplace new in c++)
I tried this code however it causes an access violation with a deb …
0
votes
1answer
48 views
How to pass flag to gcc in Python setup.py script?
I'm writing a Python extension in C that requires the CoreFoundation framework (among other things). This compiles fine with:
gcc -o foo foo.c -framework CoreFoundation -framework …
0
votes
1answer
27 views
Explanation of PyAPI_DATA() macro?
I've searched all over the web and can't seem to find documentation or even a simple explanation of what PyAPI_DATA() does (even though it is used in the Python header files and ci …
0
votes
0answers
11 views
PyDateTime_IMPORT macro not initializing PyDateTimeAPI variable
I'm using the Python C API on Windows using Visual Studio 2008. When I attempt to use the PyDate_Check macro, and other related macros, they cause an access violation because the s …
1
vote
4answers
291 views
Python interpreter as a c++ class
I am working on embedding python in to c++. In some peculiar case I require two separate instances of the interpreter in same thread.
Can I wrap Python interpreter in to a c++ cla …
10
votes
1answer
137 views
Why does Python keep a reference count on False and True?
I was looking at the source code to the hasattr built-in function and noticed a couple of lines that piqued my interest:
Py_INCREF(Py_False);
return Py_False;
...
Py_INCREF(Py_T …
3
votes
2answers
179 views
Stopping embedded Python
I'm embedding Python interpreter to a C program. However, it might happen that while running some python script via PyRun_SimpleString() will run into infinite loop or execute for …
1
vote
2answers
221 views
File I/O in the Python 3 C API
The C API in Python 3.0 has changed (deprecated) many of the functions for File Objects.
Before, in 2.X, you could use
PyObject* PyFile_FromString(char *filename, char *mode)
t …
2
votes
1answer
52 views
Python C extension: method signatures for documentation?
Hello SO :)
I am writing C extensions, and I'd like to specify for my users the signature of my methods. Let's throw in some code :)
static PyObject* foo(PyObject *self, PyObject …
2
votes
1answer
121 views
Accessing Python Objects in a Core Dump
Is there anyway to discover the python value of a PyObject* from a corefile in gdb
2
votes
1answer
202 views
Python C API: how to get string representation of exception?
If I do (e.g.)
open("/snafu/fnord")
in Python (and the file does not exist), I get a traceback and the message
IOError: [Errno 2] No such file or directory: '/snafu/fnord'
…
0
votes
1answer
78 views
Python Extension Returned Object Etiquette
I am writing a python extension to provide access to Solaris kstat data ( in the same spirit as the shipping perl library Sun::Solaris::Kstat ) and I have a question about conditio …
2
votes
2answers
327 views
Any way to create a NumPy matrix with C API?
I read the documentation on NumPy C API I could find, but still wasn't able to find out whether there is a possibility to construct a matrix object with C API — not a two-dimension …
0
votes
2answers
434 views
Python C-API Object Allocation
I want to use the new and delete operators for creating and destroying my objects.
The problem is python seems to break it into several stages. tp_new, tp_init and tp_alloc for cr …
