Is there a good Python C/C++ IDE?
Being new to Python, I was wondering if anyone knows of a good IDE that would let me develop Python and add extensions in C/C++, with the capability of debugging those extensions. This will be on a Mac. It looks like the standard download comes with PyObjC, however I want to extend Python to handle my C/C++ extensions not the other way around + I don't want to have to learn any ObjectiveC / ObjC syntax. Thanks,
On Thu, 2005-08-11 at 13:49 -0400, Scott Kaplan wrote:
Being new to Python, I was wondering if anyone knows of a good IDE that would let me develop Python and add extensions in C/C++, with the capability of debugging those extensions.
This will be on a Mac.
I use Eclipse with the PyDev and CDT extensions for C, C++, and Python code editing and browsing, and use Scons for the build driver. I haven't managed to get the cdt's gdb plugin to work with a Python extension module, but otherwise it has worked well for me. The best part is that the combination has the advantage of working on Linux, OSX, and Windows, (and others) so you get to use basically the same toolset on all three platforms. HTH, -Jonathan
Jonathan, I think that this is exactly what I was looking for. Thanks. On 8/12/05, Jonathan Brandmeyer <jbrandmeyer@earthlink.net> wrote:
On Thu, 2005-08-11 at 13:49 -0400, Scott Kaplan wrote:
Being new to Python, I was wondering if anyone knows of a good IDE that would let me develop Python and add extensions in C/C++, with the capability of debugging those extensions.
This will be on a Mac.
I use Eclipse with the PyDev and CDT extensions for C, C++, and Python code editing and browsing, and use Scons for the build driver. I haven't managed to get the cdt's gdb plugin to work with a Python extension module, but otherwise it has worked well for me. The best part is that the combination has the advantage of working on Linux, OSX, and Windows, (and others) so you get to use basically the same toolset on all three platforms.
HTH, -Jonathan
_______________________________________________ C++-sig mailing list C++-sig@python.org http://mail.python.org/mailman/listinfo/c++-sig
participants (2)
-
Jonathan Brandmeyer -
Scott Kaplan