Re: Using Visual C++
Greg Ewing <[email protected]> Sat, 31 Jan 2009 22:24:56 +1300
| Newsgroups | gmane.comp.python.pyrex |
|---|---|
| Organization | University of Canterbury | Te Whare Wananga o Waitaha |
| Message-ID | <[email protected]> |
Navid Parvini wrote: > I have written a code named first.pyx and then used "pyrex.py" to created "first.c" > file but now I want to know how can I create "first.dll" file by using "Visual C++". The easiest way is to use distutils. Create a setup.py that turns first.c into an extension module in the usual way. -- Greg