Re: Some error messages in Python are ugly

2008-05-11 Thread Matthieu Brucher
Please, really please, stop asking question and go read some books about/get some courses on Linux shell and then finally Python. Before you do that, the only thing will have is upset people telling you to _think_ (clearly that's something you are n,ot used to do, but you will have to start at some

Re: Some error messages in Python are ugly

2008-05-11 Thread george . f . rice
On May 11, 3:10 am, [EMAIL PROTECTED] wrote: > This really looks ugly for an error message: > > [1]+ Stopped python > > Please explain to me the role of the '+' sign. And why is there such a > gap between 'Stopped' and 'python'? I suspect you were running the python command line i

Re: Some error messages in Python are ugly

2008-05-11 Thread Marc 'BlackJack' Rintsch
On Sun, 11 May 2008 01:10:19 -0700, wxPythoner wrote: > This really looks ugly for an error message: > > [1]+ Stopped python It's neither an error message nor does it come from Python. It's a message from your shell about job control. Seems you have stopped the running process

Re: Some error messages in Python are ugly

2008-05-11 Thread Florencio Cano
This is not a Python error, this is a bash message that appears when you press ctrl+z and put the application in the background. Execute fg to return the app to the foreground. 2008/5/11 <[EMAIL PROTECTED]>: > This really looks ugly for an error message: > > [1]+ Stopped python >

Some error messages in Python are ugly

2008-05-11 Thread wxPythoner
This really looks ugly for an error message: [1]+ Stopped python Please explain to me the role of the '+' sign. And why is there such a gap between 'Stopped' and 'python'? -- http://mail.python.org/mailman/listinfo/python-list