Re: Python crashes on segmentation error

2011-11-30 Thread rusi
On Dec 1, 3:29 am, Terry Reedy wrote: > On 11/30/2011 7:58 AM, Christian Heimes wrote: > > > > > > > > > > > Am 30.11.2011 11:42, schrieb Ben Richardson: > >> Python crashes every time i run the following command… > > >>>>> imp

Re: Python crashes on segmentation error

2011-11-30 Thread Terry Reedy
On 11/30/2011 7:58 AM, Christian Heimes wrote: Am 30.11.2011 11:42, schrieb Ben Richardson: Python crashes every time i run the following command… import cv Segmentation fault: 11 Python quit unexpectedly - any help would be greatly appreciated - thankyou in advance :) Here is crash report

Re: Python crashes on segmentation error

2011-11-30 Thread Christian Heimes
Am 30.11.2011 11:42, schrieb Ben Richardson: > Python crashes every time i run the following command… > >>>> import cv > Segmentation fault: 11 > > Python quit unexpectedly - any help would be greatly appreciated - > thankyou in advance :) > > Here is crash

Python crashes on segmentation error

2011-11-30 Thread Ben Richardson
Hi! Python crashes every time i run the following command… >>> import cv Segmentation fault: 11 Python quit unexpectedly - any help would be greatly appreciated - thankyou in advance :) Here is crash report… Process: Python [276] Path:/Library/Frameworks/Python.

Re: Python Crashes

2009-01-15 Thread David Bolen
koranthala writes: > Could anyone guide me on this? I have been facing this issue for a > day, and cannot seem to solve it. We had a scheduling system that had a similar "once in a long while hard Windows-process crash" which after a bunch of work to try to track down the source, the most ro

Re: Python Crashes

2009-01-15 Thread Terry Reedy
I am using 9 3rd party modules and there are some DLLs too - PIL etc. But the problem is that the issue comes only after 3 hrs usually. When I checked the memory using taskmanager, I found that it is not going too high. I know of 3 general ways to crash the interpreter. 1. Use 3rd party module

Re: Python Crashes

2009-01-15 Thread Martin P. Hellwig
koranthala wrote: This does sounds more to me like a windows/hardware problem, what you could do is check the windows log for errors, especially look for read errors from the hard disk. Windows sometimes can behave very strangely especially if the external libs don't behave well on a multi

Re: Python Crashes

2009-01-14 Thread koranthala
On Jan 15, 3:12 am, "James Mills" wrote: > On Thu, Jan 15, 2009 at 6:57 AM, koranthala wrote: > > Hi, > >    I have a twisted based application based on Python 2.4.3. I also > > have one thread in this application. > > >    I found that my program crashes repeatedly after a random interval > > (r

Re: Python Crashes

2009-01-14 Thread James Mills
On Thu, Jan 15, 2009 at 6:57 AM, koranthala wrote: > Hi, >I have a twisted based application based on Python 2.4.3. I also > have one thread in this application. > >I found that my program crashes repeatedly after a random interval > (ranging from 10 min to 3 hr). When I say crash, it is n

Re: Python Crashes

2009-01-14 Thread Philip Semanchuk
On Jan 14, 2009, at 3:57 PM, koranthala wrote: Hi, I have a twisted based application based on Python 2.4.3. I also have one thread in this application. I found that my program crashes repeatedly after a random interval (ranging from 10 min to 3 hr). When I say crash, it is not just that

Python Crashes

2009-01-14 Thread koranthala
Hi, I have a twisted based application based on Python 2.4.3. I also have one thread in this application. I found that my program crashes repeatedly after a random interval (ranging from 10 min to 3 hr). When I say crash, it is not just that the program dies. Rather in WinXP - a window com

Re: Python crashes consistently

2008-04-16 Thread Diez B. Roggisch
> Just to clarify (sorry, I'm a bit of a command line newbie): > > Do you mean to install Python from the .dmg - i.e. into /usr/local/ > bin? Yes and No. Use the DMG - but it will install Python under /Library/Frameworks/Python.framework/... > And then to install Numpy directly as well (manual

Re: Python crashes consistently

2008-04-16 Thread Pete Crite
Thanks for the quick reply, Just to clarify (sorry, I'm a bit of a command line newbie): Do you mean to install Python from the .dmg - i.e. into /usr/local/ bin? And then to install Numpy directly as well (manually, from source), then continue with the MacPorts installation of Gnumeric (i.e.

Re: Python crashes consistently

2008-04-16 Thread martin . laloux
I agree, use the official python http://www.python.org/ftp/python/2.5.2/python-2.5.2-macosx.dmg I'm also using OS X 10.4.11 and I have no problem for installing numpy http://www.scipy.org/Installing_SciPy/Mac_OS_X or you can download Pre-built binaries from http://pythonmac.org/packages/py25-fat/

Re: Python crashes consistently

2008-04-16 Thread Diez B. Roggisch
Pete Crite wrote: > Hello, > > I've been trying to install Gnumeric via MacPorts recently, but I > can't get past the installation of py25-numpy. You are using the wrong python version. Don't use MacPorts for this, because it will install a local, non-framework version of python - which will do

Re: Python crashes consistently

2008-04-16 Thread Pete Crite
PM, Pete Crite wrote: > > Hello, > > I've been trying to install Gnumeric via MacPorts recently, but I > can't get past the installation of py25-numpy. > > It appears that python crashes consistently during installation. I'm > not sure if this is related to pyt

Re: Python crashes consistently

2008-04-16 Thread martin . laloux
which python ? from macports or macpython ? -- http://mail.python.org/mailman/listinfo/python-list

Python crashes consistently

2008-04-16 Thread Pete Crite
Hello, I've been trying to install Gnumeric via MacPorts recently, but I can't get past the installation of py25-numpy. It appears that python crashes consistently during installation. I'm not sure if this is related to python itself, but I just thought I'd ask here,

Re: python crashes in Komodo

2006-03-13 Thread jimlewis
> any non-standard (i.e. non-bundled) C extensions ? No. -- http://mail.python.org/mailman/listinfo/python-list

Re: python crashes in Komodo

2006-03-13 Thread Fredrik Lundh
"swisscheese" wrote: > Using the Komodo IDE under XP I often get "python.exe has encountered a > problem and needs to close". Running python direct on the same app > gives a list index out of bounds error. Any ideas how to get Komodo to > give the proper error? is your application using any non-s

Re: python crashes in Komodo

2006-03-12 Thread swisscheese
Komodo ver 3.5.2, build 227162, platform win32-ix86. XP SP 2 Python 2.4.2 I did not think to enter the bug as it is so basic - list index out of bounds. When I run python at a dos prompt python handles the error properly. In Komodo, a simple case like this is no problem. x = [1,2,3] print x[4] I

Re: python crashes in Komodo

2006-03-12 Thread Trent Mick
[swisscheese wrote] > Using the Komodo IDE under XP I often get "python.exe has encountered a > problem and needs to close". Running python direct on the same app > gives a list index out of bounds error. Any ideas how to get Komodo to > give the proper error? Jim, Have you logged a bug in our bug

python crashes in Komodo

2006-03-12 Thread swisscheese
Using the Komodo IDE under XP I often get "python.exe has encountered a problem and needs to close". Running python direct on the same app gives a list index out of bounds error. Any ideas how to get Komodo to give the proper error? -- http://mail.python.org/mailman/listinfo/python-list