Tagged Questions

python c extensions are modules written in C/C++ and can be imported and used by python interpreter

learn more… | top users | synonyms

9
votes
2answers
104 views

Docstrings in C extensions to Python?

When creating a C extension to Python, is it possible to be able to somehow write comments that are exposed as docstrings to users of the extension?
9
votes
2answers
1k views

Python and OpenMP C Extensions

I have a C extension in which I'd like to use OpenMP. When I import my module, though, I get an import error: ImportError: /home/.../_entropysplit.so: undefined symbol: GOMP_parallel_end I've ...
8
votes
1answer
669 views

python c extension, problems with dlopen on mac os

I've taken a library that is distributed as a binary lib (.a) and header, written some c++ code against it, and want to wrap the results up in a python module. I've done this here. The problem is ...
7
votes
4answers
269 views

Python C extension: Use extension PYD or DLL?

I have a Python extension written in C and I wonder if I should use the file extension DLL or PYD under Windows. (And what would I use in Linux?) Are there any differences (besides the filename)? I ...
7
votes
1answer
2k views

Building lxml for Python 2.7 on Windows

I am trying to build lxml for Python 2.7 on Windows 64 bit machine. I couldn't find lxml egg for Python 2.7 version. So I am compiling it from sources. I am following instructions on this site ...
6
votes
5answers
210 views

How to use C extensions in python to get around GIL

I want to run a cpu intensive program in Python across multiple cores and am trying to figure out how to write C extensions to do this. Are there any code samples or tutorials on this?
5
votes
2answers
198 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
5answers
853 views

Is it normal that running python under valgrind shows many errors with memory?

I've tried to debug memory crash in my Python C extension and tried to run script under valgrind. I found there is too much "noise" in the valgrind output, even if I've ran simple command as: ...
4
votes
1answer
95 views

Python C Extension passing arguments by reference

I am trying to write a python C wrapper for a function (libFunc) whose prototype is libFunc(char**, int*, char*, int) How do I use PyArg_ParseTuple for setting up the arguments for function call. ...
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
157 views

Python/C: Parse all values at once for return to Python?

If you are outputting a lot of values from C to a dict in Python, is there a better (quicker and less error prone) way to do it than: return ...
3
votes
1answer
99 views

Python extension module with variable number of arguments

I am trying to figure out how in C extension modules to have a variable (and maybe) quite large number of arguments to a function. Reading about PyArg_ParseTuple it seems you have to know how many to ...
3
votes
4answers
113 views

What's the cost of releasing the GIL?

Let's suppose I have a C extension function that does something that is completely independent of the Python interpreter. Is there any reason not to release the GIL? For example, is there any reason ...
3
votes
3answers
525 views

How do I create a fixed-length, mutable array of Python objects in Cython?

I need to have an array of python objects to be used in creating a trie datastructure. I need a structure that will be fixed-length like a tuple and mutable like a list. I don't want to use a list ...
3
votes
2answers
176 views

What is the easiest way to make an optional C extension for a python package?

I've created a C extension that I'd like to enable in my Python package (using setuptools) only if a command line option is passed in. What is the easiest way to do this? I can't seem to find any ...
3
votes
2answers
274 views

PyArg_ParseTuple and a callback function pointer

I have code like the following: PyObject *callback; PyObject *paths; // Process and convert arguments if (!PyArg_ParseTuple(args, "OO:schedule", &paths, &callback)) ...
2
votes
1answer
82 views

How do you compile Python C/C++ extensions for different OS/versions of Python?

I have noticed that several mature Python libraries have precompiled versions for most architectures (Win32/Win-amd64/MacOS) and versions of Python. What is the standard way to cross-compile your ...
2
votes
2answers
69 views

How can I set log level used by distutils when using pip?

I'm trying to find out what's the reason of error: Unable to find vcvarsall.bat after pip install greenlet. I'd like to set log level used by distutils so that debug messages like log.debug("Unable to ...
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
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
2answers
761 views

“…can't figure out the architecture type of…” problem when compiling Python C-extension with gcc

I just upgraded from Snow Leopard to Lion, and an old python c-extension that I had to update didn't want to compile properly. I don't really know what to do here. Anyone who could help me out so it ...
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
3answers
267 views

Is there any reason to use malloc over PyMem_Malloc?

I'm reading the documentation for Memory Management in Python C extensions, and as far as I can tell, there doesn't really seem to be much reason to use malloc rather than PyMem_Malloc. Say I want to ...
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
802 views

Python C API: Switch on PyObject type

I have some code to interface Python to C++ which works fine but every time I look at it I think there must be a better way to do it. On the C++ side there is a 'variant' type that can deal with a ...
2
votes
1answer
222 views

How to get the arch string that distutils uses for builds?

When I build a c extension using python setup.py build, the result is created under a directory named build/lib.linux-x86_64-2.6/ where the part after lib. changes by the OS, CPU and Python ...
1
vote
3answers
101 views

Crash when showing a PyQt4 Window after importing a python extension that uses OpenMP

I'm developing a python application that uses a C-extension module I also developed myself. The extension module does some heavy number crunching and makes use of OpenMP. I was recently adding some ...
1
vote
1answer
111 views

Python.h compiler issue

I'm kinda new to C, and I can't seem to do what I want. I need to make some Python bindings for C functions, and I think I can figure this out. But there's one little line that WILL NOT WORK. ...
1
vote
1answer
91 views

problem redirecting stdout of C functions when imported in python

I wrote a simple C module which prints to stdout using printf. // sample.c func_print() { printf("Hello World!\n"); } Later, I made a wrapper around this using SWIG so that I could use ...
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
533 views

easy_install fails on error “Couldn't find setup script” after binary upload?

After uploading a binary distribution of my Python C extension with python setup.py bdist upload, easy_install [my-package-name] fails on "error: Couldn't find a setup script in ...
1
vote
1answer
1k views

Distutils can't find Python.h

I have a distutils setup script with an Extension section, which looks something like this: from distutils.core import setup, Extension my_module = Extension('my_module', sources = ...
1
vote
2answers
376 views

alternatives to DYLD_LIBRARY_PATH/LD_LIBRARY_PATH

I'm developing python C++ extensions for use in both OSX and linux. Currently, I can run my code with a wrapper script wrapper.sh: #!/bin/bash ...
1
vote
1answer
185 views

Why is this C method segfaulting?

I'm writing an immutable linked list class in C, but one method is mysteriously segfaulting. The code is intended to be roughly equivalent to this: class PList(object): def __init__(self, first, ...
1
vote
2answers
195 views

Python C extension not threadsafe?

I made a c extension out of a python script that was fairly labour intensive. The code itself is well tested and simple. The c extension is called with a few large lists, and it then performs some ...
0
votes
0answers
21 views

Python C Extension, Error 1784 with HID send

Im using a Teensy 2.0 for some microcontroller work, and Im trying to communicate with it using Raw HID. The project is being added into a larger Python program I wrote, so thats how I must do the ...
0
votes
1answer
96 views

convert PyInt to C Int

i need to convert PyInt to C int. In my code count=PyInt_FromSsize_t(PyList_Size(pValue)) pValue is a PyObject, PyList. the problem i was having is the PyList_Size is not returning me the correct ...
0
votes
1answer
53 views

embedding python error on initialization

when im running C code to call python functions, there's error on Py_Initialize() The error is ImportError: No module named site. Ive tried to put Py_SetProgramName(argv[0]) but it doesnt work. The ...
0
votes
1answer
59 views

Usage of python logging module in c-extension

I'm working on a python script and I'm using the python logging module for writing some information into a log file (see http://docs.python.org/howto/logging.html). Here is a small example (also from ...
0
votes
1answer
34 views

Adding generator functionality to a Python/C class

I have built a class in C with the Python/C API. I now have a requirement to iterate over the data items in the C blob. Returning a PyList is undesirable as length is >50K. Is there a way to provide ...
0
votes
0answers
83 views

Python Debugging with C extension, Error in PyUnicode_ClearFreeList

My program is breaking while I am trying to make a python extension module in C. This is unusually breaking @ PyUnicode_ClearFreeList and I am not sure how to debug this. Any pointer to this will ...
0
votes
2answers
174 views

Writing a Python C extension: how to correctly load a PyListObject?

While attempting to read a Python list filled with float numbers and to populate real channels[7] with their values (I'm using F2C, so real is just a typedef for float), all I am able to retrieve from ...
0
votes
1answer
343 views

can't import python extension

I'm trying to learn python extensions, and I created the simple noddy example c file and setup.py. python.exe setup.py build gives me: running build running build_ext building 'noddy' extension ...
0
votes
1answer
176 views

Freeing a PyTuple object

What is the proper way to free a PyTuple object using the Python C-API? I know that tuples are somewhat special when it comes to the reference counting semantics, since PyTuple_SetItem "steals" the ...
0
votes
2answers
336 views

Python interface to dynamic binary instrumentaton framework PIN

I work in analyzing binary files, using Python. I have been using debuggers to do a dynamic analysis (i.e running the application and using breakpoints to get runtime execution). however, results can ...
0
votes
1answer
206 views

PyArg_ParseTuple causing segmentation fault

I'm trying to call a c function from my extension and have narrowed the problem down to this test case. #import "Python.h" ... // Called from python with test_method(0, 0, 'TEST') static PyObject* ...
0
votes
1answer
254 views

How to define initialized C-array in the Pyrex?

I want to define initialized C-array in Pyrex, e.g. equivalent of: unsigned char a[8] = {0,1,2,3,4,5,6,7}; What will be equivalent in Pyrex? Just array is cdef unsigned char a[8] But how can I ...
0
votes
1answer
177 views

Python C-API module exit handler - an atexit equivalent?

I'm using Python ver 2.6.4 There is a function I have to call from a C library when my extension module exits/is unloaded. What would be the equivalent of atexit for a C extension module?