Re: Are there memory limits for external C modules?

2006-02-10 Thread [EMAIL PROTECTED]
[EMAIL PROTECTED] wrote: > I was able to modify my C code so that instead of being a Python > module, it runs as a standalone binary, and it works as it should. > Calling it with os.spawn* works. The two versions are essentially the > same, the primary differences being the necessary difference in

Re: Are there memory limits for external C modules?

2006-01-28 Thread Marc 'BlackJack' Rintsch
In <[EMAIL PROTECTED]>, [EMAIL PROTECTED] wrote: > I was able to modify my C code so that instead of being a Python > module, it runs as a standalone binary, and it works as it should. > Calling it with os.spawn* works. The two versions are essentially the > same, the primary differences being th

Re: Are there memory limits for external C modules?

2006-01-26 Thread [EMAIL PROTECTED]
Fredrik Lundh wrote: > [EMAIL PROTECTED] wrote: > > > I've been working on an external C module for Python in order to use > > some of the functionality from Ethereal. Right now I'm getting > > segfaults originating from within the Ethereal source code, but the > > same code works fine when used no

Re: Are there memory limits for external C modules?

2006-01-26 Thread Fredrik Lundh
[EMAIL PROTECTED] wrote: > I've been working on an external C module for Python in order to use > some of the functionality from Ethereal. Right now I'm getting > segfaults originating from within the Ethereal source code, but the > same code works fine when used normally (i.e. through Ethereal or

Are there memory limits for external C modules?

2006-01-26 Thread david
I've been working on an external C module for Python in order to use some of the functionality from Ethereal. Right now I'm getting segfaults originating from within the Ethereal source code, but the same code works fine when used normally (i.e. through Ethereal or Tethereal). I'm wondering if ther