Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

7
votes
4answers
270 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 ...
3
votes
3answers
92 views

Python: how to deal with several .pyd dependencies with the same name?

I have in my python workspace two Modules which need sip.pyd Module1.pyd needs sip.pyd (which implements v 8.0-8.1) Module2.pyd needs sip.pyd (another file, that implements v6.0)v So I can't just ...
2
votes
1answer
132 views

port only a single method of class to C?

I have a class with few methods and I'm happy with the performance of all of them except one method. We want to port that to C++. However we don't want to spend too much time porting the whole class ...
2
votes
1answer
63 views

Python find out contents of compiled module?

So have this Python .pyd module (C++), so I can't just open it in a text editor to find out what it contains. So how can I? I just want to know the function names inside it.
2
votes
2answers
111 views

import C++ module, if fail: import Python version?

I have a Python pyd module written in C++. I also have a Python version of the module (which is much slower). My question is, as I want the program to run on multiple OSs, can I try to import the C++ ...
2
votes
5answers
3k views

Including PYDs/DLLs in py2exe builds

One of the modules for my app uses functions from a .pyd file. There's an option to exclude dlls (exclude_dlls) but is there one for including them? The build process doesn't seem to be copying the ...
1
vote
0answers
53 views

Python and SWIG - Multiple modules in a single .pyd (.so)

I am writing a C++ extension for Python using SWIG. From what I understand of Python and SWIG, each module must have its own .pyd file. For example, if I have a module named 'mymodule', there should ...
0
votes
2answers
107 views

DLL in sub folder rather than in application folder

have created a dynamic python file (pyd) using VC++. Using cx_freeze, I have created an exe. In order for this program to work on other computers, I need to have a file msvcr100.dll in the ...
0
votes
3answers
566 views

*.pyd file fails to load, but DependancyWalker comes up clean, and ProcMon shows it loaded

I am trying to load a *.pyd with Python, but I receive the well known "Import Error: DLL load failed: the specified procedure can not be found." error. I have already done the following: 1.) ...
0
votes
2answers
727 views

How can I import a .PYD module in IronPython?

I'm trying to use a python package from IronPython. Everything works fine if I import regular python modules. But when I try to do the following: import win32ui I get: No module named win32ui ...