Tagged Questions
The python-c-api tag has no wiki summary.
58
votes
2answers
2k views
How to dynamically create a derived type in the Python C-API
Assume we have the type Noddy as defined in the tutorial on writing C extension modules for Python. Now we want to create a derived type, overwriting only the __new__() method of Noddy.
Currently I ...
20
votes
4answers
1k views
Python (and Python C API): __new__ versus __init__
The question I'm about to ask seems to be a duplicate of Python's use of __new__ and __init__ ?, but regardless, it's still unclear to me exactly what the practical difference between __new__ and ...
12
votes
1answer
325 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_True);
return ...
9
votes
2answers
1k views
How to create a generator/iterator with the Python C API?
How do I replicate the following Python code with the Python C API?
class Sequence():
def __init__(self, max):
self.max = max
def data(self):
i = 0
while i < ...
7
votes
1answer
217 views
How is __slots__ implemented in Python?
How is __slots__ implemented in Python?
Is this exposed in the C interface?
How do I get __slots__ behaviour when defining a Python class in C via PyTypeObject?
6
votes
2answers
920 views
Pass array of structs from Python to C
[Update: Problem solved! See bottom of the post]
I need to allow python developers to pass an array of packed data (in this case vertices) into my API, which is a series of C++ interfaces exposed ...
6
votes
2answers
1k 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 too long. Consider ...
5
votes
2answers
196 views
How can I assert from Python C code?
I'm writing a Python class in C and I want to put assertions in my debug code. assert.h suits me fine. This only gets put in debug compiles so there's no chance of an assert failure impacting a user ...
5
votes
1answer
1k 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'
I would like to get ...
4
votes
1answer
131 views
Returning objects to Python from C
I've read the documentation for the Python C-API, and even written a few extension modules. However, I'm still a bit unclear on the exact semantics when it comes to returning Python objects from a C ...
4
votes
4answers
445 views
Is it possible to modify PYTHONPATH at runtime?
I have a C++ application dynamically linked to the Python interpreter. I want to be able to import python modules from a particular directory. I want to modify the PYTHONPATH for my process so that ...
4
votes
2answers
132 views
Suggestions on how to speed up a distance calculation
Consider the following class:
class SquareErrorDistance(object):
def __init__(self, dataSample):
variance = var(list(dataSample))
if variance == 0:
self._norm = 1.0
...
3
votes
3answers
68 views
is it possible to overwrite “self” to point to another object inside self.method in python?
class Wrapper(object):
def __init__(self, o):
# get wrapped object and do something with it
self.o = o
def fun(self, *args, **kwargs):
self = self.o # here want to swap
...
3
votes
2answers
214 views
Why do Python functions get garbage collected?
I have a C++ library which uses Python callbacks. The callback, i.e. PyObject*, is stored in an object of class UnaryFunction, and the constructor Py_INCREFs it. The destuctor Py_XDECREFs it. That's ...
3
votes
3answers
182 views
Create a Python type from C that implements a __dict__?
How is a type created to have a __dict__ as per a "normal" class would have were it defined in Python?
Are there any examples of non-dynamic types with __dict__s?
Do types defined via Python's ...
3
votes
2answers
327 views
Are there any Python reference counting/garbage collection gotchas when dealing with C code?
Just for the sheer heck of it, I've decided to create a Scheme binding to libpython so you can embed Python in Scheme programs. I'm already able to call into Python's C API, but I haven't really ...
3
votes
1answer
251 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 imported via "import ...
3
votes
1answer
138 views
Python C extension: method signatures for documentation?
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 *args) {
/* blabla [...] */
...
2
votes
1answer
41 views
Can I create a PyObject* (numpy.float32)
I am trying to implement a function in C (Extending Python) to return a numpy.float32 data type. Is it possible to actually create an object and return it, such that in python the object returned from ...
2
votes
4answers
133 views
Passing a C struct to a Python function
I need a simple way to pass a C struct to a Python function. I have embedded Python into a game server, and I intend to write game logic in Python. I've scoured Google and mailing lists and found ...
2
votes
1answer
67 views
Passing a C pointer around with the Python/C API
Im new to the Python/C API ... Im trying to add new functionality to my C program, wherein I can embed python into it and simultaneously extend functionality so that the embedded interpreter can ...
2
votes
1answer
69 views
Python C API unicode arguments
I have a simple python script
import _tph
str = u'Привет, <b>мир!</b>' # Some unicode string with a russian characters
_tph.strip_tags(str)
and C library, which is compiled into ...
2
votes
1answer
36 views
Evaluating Python Code From the CAPI and getting Output
I'm trying to emulate code.InteractiveInterpreter from the embedded Python C API. I'm using PyEval_Evalcode to evaluate the user input. I am trying to evaluate user input in the interpreter and return ...
2
votes
1answer
75 views
PyArg_ParseTuple SegFaults in CApi
I am writing a code, trying to get used to the C-Api of NumPy Arrays.
#include <Python.h>
#include "numpy/arrayobject.h"
#include <stdio.h>
#include <stdbool.h>
static char doc[] ...
2
votes
1answer
110 views
typecasting PyArrayObject data to a C array
I want to work with my Numpy arrays in a C extension.
Many examples in this case uses the structure of PyArrayObject,
array->data , array->strides[0] , array->strides[1] , ...
pointers in ...
2
votes
1answer
71 views
Python: Usage of PyDateTime_FromTimestamp
I'm working on a python c-extension and want to create an instance of python datetime object with a unix timestamp.
On the documentation site ( http://docs.python.org/c-api/datetime.html ) I found ...
2
votes
1answer
113 views
Reversing axis in Numpy array using C-API
I am using the Python C-API to wrap some C++ code as a Python package.
In the end, I have to reverse an axis in a numpy array, i.e. doing
x = x[:, ::-1]
Is there some way of doing this using the ...
2
votes
2answers
137 views
Limitations of PyTuple_SetItem
I have a Python extension module which creates a tuple as an attribute of another object, and sets items in the tuple. Whenever I execute this module in Python, I keep getting the error SystemError: ...
2
votes
1answer
611 views
Py_INCREF/DECREF: When
Is one correct in stating the following:
If a Python object is created in a C function, but the function doesn't return it, no INCREF is needed, but a DECREF is.
[false]If the function does return ...
2
votes
1answer
251 views
Return CTypes pointer from C
I'm writing a Python C Extension that needs to return a CTypes pointer to a char array in memory (I need to interface with another Python library that expects a CTypes pointer).
I cannot find any ...
2
votes
1answer
268 views
What are the implications of calling Numpy's C API functions from multiple threads?
This is risky business, and I understand the Global Interpreter Lock to be a formidable foe of parallelism. However, if I'm using Numpy's C API (specifically the PyArray_DATA macro on a Numpy array), ...
2
votes
1answer
229 views
PyEval_CallObject failing in loop occasionally
I am struggling a bit with the Python C API. I am calling a python method to do some game AI at about 60hz. It works most of the time but every second or so the call to PyEval_CallObject results in ...
2
votes
2answers
290 views
Access contents of PyBuffer from C
I have created a buffer object in python like so:
f = io.open('some_file', 'rb')
byte_stream = buffer(f.read(4096))
I'm now passing byte_stream as a parameter to a C function, through SWIG. I have ...
2
votes
2answers
401 views
Python C-API Making len(…) work with extension class
When creating a class in Python, I can simply make a def __len__(self): method to make the len(InstanceOfMyClass) work, however I can't find out how to do this with an extension class via the C-API.
...
2
votes
1answer
206 views
Named parameters with Python C API?
How can I simulate the following Python function using the Python C API?
def foo(bar, baz="something or other"):
print bar, baz
(i.e., so that it is possible to call it via:
>>> ...
2
votes
1answer
1k 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 Python
...
2
votes
1answer
232 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 static variable ...
2
votes
5answers
479 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++ class and get services ...
2
votes
1answer
613 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
2answers
1k 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-dimensional array. The ...
2
votes
1answer
624 views
Python c-api and unicode strings
I need to convert between python objects and c strings of various encodings. Going from a c string to a unicode object was fairly simple using PyUnicode_Decode, however Im not sure how to go the other ...
2
votes
2answers
563 views
Creating an inheritable Python type with PyCxx
A friend and I have been toying around with various Python C++ wrappers lately, trying to find one that meets the needs of both some professional and hobby projects. We've both honed in on PyCxx as a ...
1
vote
1answer
96 views
NumPy C-API: convert type object to type number
The function
PyObject* PyArray_TypeObjectFromType(int);
converts the type number for a NumPy scalar type (NPY_BOOL, NPY_BYTE, ...) to the corresponding type object.
How do you do the opposite ...
1
vote
1answer
37 views
PyArray_BOOL declaration & working with Numpy array of bools in C extension
I have a NumPy array of bools in my code that I wish to write a C extension to.
When I try to get a contiguous array in order to use in my C routine, I use:
arr_mask = (PyArrayObject *)
...
1
vote
1answer
153 views
Numpy C-Api example gives a SegFault
I'm trying to understand how the Python C- Api works, and I want to exchange numpy arrays between Python and a C Extension.
So, I started this tutorial: ...
1
vote
2answers
204 views
Diffrence between instance variables and attributes in python?
So, the python docs for writing extension says this:
"We want to expose our instance
variables as attributes. There are a
number of ways to do that. The
simplest way is to define member
...
1
vote
1answer
379 views
Any way of calling c/c++ code from python without altering the c/c++ code?
Edit done:
I am wrapping a custom python dll with the purpose of removing the custom code eventually and using a recent python instead of the ancient version that is being used now. One of the ...
1
vote
2answers
191 views
Python C API: PyEval_CallFunction?
I've discovered a function in the Python C API named PyEval_CallFunction which seems to be useful. It allows you to invoke a Python callable by saying something like:
PyEval_CallFunction(obj, "OOO", ...
1
vote
0answers
127 views
How to use python 2.6 from Visual Basic 2005?
What's the best way to call python scripts from Visual Basic 2005?
I've got an application written in visual basic 2005 that needs to call into a library written in python. The library requires ...
1
vote
1answer
44 views
Implementing PyMyType_Check methods with Python C API?
All the Python-provided types have a check method (i.e., PyList_Check) that allows you to check if an arbitrary PyObject* is actually a specific type.
How can I implement this for my own types? I ...