Python is an interpreted, general-purpose high-level programming language whose design philosophy emphasizes code readability.

learn more… | top users | synonyms

1
vote
1answer
23 views

Python/Numpy C++ extension: memory issue

I wrote a python extension in C++ to work with numpy arrays. I have a memory issue. I have a 3D numpy array with values > 0 before I call the extension. Once I am in the extension I get the numpy ...
3
votes
0answers
45 views

What is the opposite of PyMODINIT_FUNC in Python 2.x C extension modules?

I need to import one of the core modules (datetime) inside my C extension module since I want to return a datetime.date from some functions of my module. It appears that Python C extension modules ...
0
votes
0answers
17 views

cpython: packaging extension with original C/C++ source

I have a C/C++ module that is structured like the following and it yields a libthing.so after compilation: Makefile src/ libfoo.cc I've written a Python Extension for this C/C++ module. I want to ...
0
votes
1answer
43 views

Relative include paths when building an RPM for a python extension using distutils

Using python 2.6, I'm attempting to build an RPM for a python C extension module. The setup.py that I'm using contains something like: from distutils.core import setup, Extension foo_ext = ...
0
votes
2answers
117 views

try/catch to avoid .stackdump

In the code below i use try/catch in the python module code. In the try block i have a simple error (memory access violation) and trying to catch the corresponding exception and to terminate the ...
2
votes
1answer
108 views

manually building a python extension in cygwin with boost.python

Sorry for such a general title, but i'm not quite sure what exactly i'm missing or what i'm doing wrong. My aim is to build a python extension using boost.python under cygwin and avoiding boost.build ...
2
votes
2answers
85 views

Benefit of converting Python method to C extension?

A relatively simple question: If I convert a CPU-bound bottleneck method from Python to a C extension (roughly implementing the same algorithm), How much increase in speed, and performance should ...
0
votes
2answers
98 views

Python extension debugging

I'm trying to debug an extension module for python that I wrote in C. I compiled it using the following: python setup.py build -g install --user I then debug with: gdb python ... b py_node_make ...
2
votes
1answer
80 views

PyString_FromStringAndSize causes segmentation fault

I have a weird segfault with python. Here's the problematic piece of code: const std::string &fullName = child.getFullName(); const char *fName = fullName.c_str(); const int len = ...
0
votes
1answer
33 views

When are the C tp_as_mapping (et al.) methods invoked?

The C PyObject structure contains the fields tp_as_number, tp_as_sequence and tp_as_mapping. In which circumstances are these invoked? Can anybody provide some example Python code which would result ...
0
votes
2answers
93 views

How to write python extensions in pure asm and would it be efficient?

I have medium amateur skills in Python and I'm beginner in asm and haven't any knowledge of C-language. I know that python C-extensions must follow specific interface to work fine. Is this possible ...
1
vote
0answers
279 views

Python import error undefined symbol: Py_InitModule4 on executing my script

I am working on C extension of python where this extension C module will make a Remote Procedure Call(RPC) to access the network services. This C module will apply the method Py_BuildValue on the ...
5
votes
1answer
116 views

What does Cython do with imports?

I want to create a Python extension and I really like the idea of using Cython. Mainly to gain more knowledge about it and to take advantage of speed gains, if any. I have read quite a bit of Cython ...
0
votes
2answers
342 views

What is the proper usage of PyArg_ParseTuple

I am using what seems to be the exact usgae of PyArg_ParseTuple, yet the code is still failing to work. I am using python 2.7 This is my C code for the Python Extension I am writing: static ...
1
vote
1answer
169 views

Python C extension: return PyFloat_FromDouble(double) segfault

I recently converted some slow python code into a C extension. It works beautifully, except that it generates a segfault at the 162nd call into it, right at the return statement. Here's how it works. ...
1
vote
0answers
125 views

Avoid duplication of msvcr90.dll in application with embedded Python + C extensions?

I'm distributing a Windows application that embeds Python 2.7 (technique: include python27.dll + 'Python27' directory with DLLs and Lib folder, alongside my .exe). I'm also including a custom Python ...
2
votes
1answer
2k views

why i failed to build sqlite3 when build python?

why i just failed to build sqlite? does it have something to do with readline or _tkinter, or something else? pes/libffi/src/prep_cif.o ...
0
votes
0answers
198 views

why i cannot import sqlite3 module?

my question is similar to ImportError: No module named _sqlite3 no solution yet, No module named _sqlite3 i build python from source, so my solution should not by install some package to solve my ...
1
vote
2answers
716 views

Why I get “C extension could not be compiled” when installing simplejson?

btw, i am using windows, so do i have to install visual studio? (py) D:\python>pip install simplejson Downloading/unpacking simplejson Downloading simplejson-2.6.2.tar.gz (53kB): 53kB downloaded ...
4
votes
2answers
262 views

Aspect oriented programming (AOP) in Python [duplicate]

Possible Duplicate: Any AOP support library for Python? I am familiar with the AspectJ extension for the Java language. I want to know if there is such a thing for Python. Don't get me ...
1
vote
2answers
191 views

Extending a virtual C++ class exposed via Boost.Python

I am trying to expose this C++ class using Boost.Python: class VAlgorithm { public: VAlgorithm(const char *name); virtual ~VAlgorithm(); virtual bool Initialize() = 0; virtual bool ...
5
votes
1answer
204 views

Correct cyclic garbage-collection in extension modules

Two sections of Python 2.7's doc mentioned adding cyclic garbage collection (CGC) support for container objects defined in extension modules. The Python/C API Reference Manual gives two rules, i.e., ...
4
votes
1answer
265 views

How to build a Python C Extension so I can import it from a module

I have a Python project with many sub-modules that I package up with distutils. I would like to build some Python extensions in C to live in some of these sub-modules but I don't understand how to ...
0
votes
1answer
114 views

Possible memory leaks

Could someone check if there is an memory leak? I am confused. PyObject * somefunc(int function_id, int num_params, int * params){ PyObject * params_list=PyList_New(0); for(int i=0; i ...
2
votes
1answer
160 views

How to specify docstring for __init__ in Python C extension

Perhaps a stupid question: how can one specify docstring for special functions like __init__ when writing a C extension? For ordinary methods, method table has provision for docstrings. The following ...
1
vote
1answer
80 views

Crash calling C++ virtual member from Python extension

I'm trying to write a thin wrapper around some C++ classes to call them from Python. The specific problem is that if virtual is uncommented below then attempting to create a Foo() crashes the ...
1
vote
1answer
150 views

Freeing a python list from C extension code

We have some code which creates a python list and then appends data items to it. Our concern is that if one of the data items turns out to be NULL, then we consider the whole of the list (that is, any ...
0
votes
0answers
71 views

Extending Python with C and ordering of data in Python

I am translating some codes written in MATLAB into Python. In Matlab, Mexfunction is used to wrap some codes written in C programming language. So, I can compare my results with the correct ones ...
1
vote
1answer
208 views

Integrating C and Python: ValueError: module functions cannot set METH_CLASS or METH_STATIC

I am making my first venture into integrating C and Python 2.7.3. For starters, I'm just trying to write a C module for Python that can do basic addition. (It is called npfind because once I figure ...
0
votes
1answer
166 views

Can't load python extension module that exists

I'm trying to use thanos, which creates an extension module at runtime. Thanos is constantly failing as it cannot import that said extension it created at runtime. I am baffled as to why this is the ...
1
vote
1answer
20 views

Is it possible to include socketmodule.h in Python C extensions?

I'd like to invoke PySocketModule_ImportModuleAndAPI function defined in socketmodule.h in my Python C-extension.
0
votes
1answer
79 views

How to convert PyFrameObject to PyObject

Maybe I'm missing something, but here is a problem: I'm tracing python code by C extensions and my trace function got PyFrameObject* frame. Now I want to process the frame by Python code(embedded or ...
3
votes
2answers
242 views

Can I use ctypes to call back C function from python embedded in C?

I have a C program with embedded python code. I have compiled python 2.7.2 from source and linked my program against libpython2.7.a. Now in my python code I wish to call back functions from other C ...
2
votes
2answers
193 views

Adding output file to Python extension

I've defined a custom build_ext to build a funky extension that I'm trying to make pip-friendly. The following is a trimmed version of what I'm doing. foo_ext = Extension( name='foo/_foo', ...
1
vote
1answer
125 views

Monkey patching C extension in Python

Using the method discussed in question 972, I was unable to monkey patch the cursor() method in psycopg: Tried to patch a methond in psycopg2 with types but it did not work: >>> import ...
2
votes
2answers
178 views

Import and use standard Python module from inside Python C extension

I have Python extension module written in C. I want to use in this C code one of the standard Python modules, for example os or shutil. How is best to do this?
0
votes
3answers
230 views

Sporadic segfault in c++ python extension

I have a python object which accesses and downloads some text via HTTP. I'm running this python object, and processing that text, using a c++ code. I.e. /* CPPCode.cxx */ int main(...) { for(int ...
1
vote
0answers
119 views

Issue with SFCB, the python-binding layer and python providers in ESX 4.0

We are writing SFCB providers in python, Since SFCB talks to only C++ providers we need to have an intermediate layer(cmpi-bindings, a python extension module) which can talk to SFCB and start the ...
1
vote
1answer
282 views

Python Extension not installing into subpackage

I'm trying to build a Python extension and package it up using distutils but the extension installs in the root package no matter how I name it. My directory layout looks like this: ...
1
vote
2answers
2k views

Method without return value in python c extension module

I'm trying to create a script in python that sends data through a parallel port. I'm creating my own module in C language. The problem is: when I try to execute my module, python crashes. No errors, ...
3
votes
1answer
876 views

How to efficiently build a Python dictionary in C++

For performance reasons I want to port parts of my python program to C++ and I therefore try to write a simple extension for my program. The C++ part will build a dictionary, which then needs to be ...
1
vote
0answers
178 views

SWIG C++ to Python: typemaps and methods accepting pointers to primitive type

I am writing a Python extension for an existing library. Some of the functions accept a pointer to a primitive, so the arg can act as output. This is not very pythonic, so I want to use typemaps as ...
2
votes
3answers
313 views

SWIG interfacing C library to Python (SWIG generated classes are cumbersome to use)

I am using SWIG to generate Python language bindings to my C library. I have managed to build the bindings and exported data structures, but I'm having to jump through some hoops when using the ...
4
votes
1answer
627 views

Cython compilation error for free function (Cannot convert Python object argument to type 'FooBar *')

I am using Cython (0.15.2) to create an extension for Python (2.6.5). I have created a pxd file and a pyx file. Here are the contents of my pyx file: cimport capifuncs cdef class myArray: cdef ...
1
vote
1answer
282 views

Cython built extension fails to export data types and functions

I have just managed to build my first C extension for Python, using Cython to call into an existing C library. I declared and defined my data types and functions into logical components (following ...
1
vote
1answer
96 views

How to create separate files with dependencies for Cython and how to fix compilation error: Cannot convert Python object to 'mySet*'

I am trying to build my fisrt python extension, using Cython. My C files are partitioned logically, and the functionality is "nested" - in that module C depends on functions defined in module B, ...
3
votes
2answers
510 views

Cython compiled C extension: ImportError: dynamic module does not define init function

I have just compiled part of my C library as an extension using Cython, as a "proof of concept". I managed to hack the code (const correctnes problems etc aside), to finally get an extension built. ...
0
votes
1answer
109 views

Cython 1.1.2 and const correctness

I am experimenting with Cython to write a python extension for my C library. I have created a setup.py file - but when I try to build my pxd and pyx files, I get an error. After some investigation, ...
1
vote
1answer
2k views

compile libdnet for python 2.7

I'm trying to use scapy on win32 python2.7 I've manage to compile all the other dependencies expect this one can some help in the goal of reaching this executable ? "dnet-1.12.win32-py2.7.exe" (I ...
1
vote
2answers
648 views

Cmake on mac os x, link libraries with fullpath

I'm trying to build a python extension with cmake. This is the cmake list: cmake_minimum_required(VERSION 2.8) PROJECT(drtile) set(CMAKE_MODULE_PATH ${CMAKE_CURRENT_SOURCE_DIR}) find_package(Vigra ...

1 2