Re: [pygame] Python IDE for windoz

2009-10-12 Thread 12 Dogs
i use komodo edit, it has pretty good code completion and doesn't suck in
general:
http://www.activestate.com/komodo_edit/


2009/10/7 pierrelafran...@sympatico.ca 

> Hi
> I have administrator rights on a computor in a lab at work, until
> tomorrow.  I would like install IDE for Python. What do you suggest me ?
>
> I know, I may not write this question in the good room, but I just learn
> this news, and after tomorrow, it will be too late to install Python.
>
> Thanks
> --
> Pierre
>


Re: [pygame] Python IDE for windoz

2009-10-10 Thread Ian Mallett
Opps...hmmm.  Forgot I I use this function to test the main:

def TestErrors(function):
try:
function()
except Exception, e:
tb = sys.exc_info()[2]
traceback.print_exception(e.__class__, e, tb)
pygame.quit()
raw_input()
sys.exit()

However, it sometimes has troubles recognizing changes after F5/run/quit,
then F5/run.  Also, tabs/spaces are all spaces...

Ian


Re: [pygame] Python IDE for windoz

2009-10-10 Thread RB[0]
Hmm, It doesn't lock up for me - window stays if you don't call pygame.quit
- but that's it

On Sat, Oct 10, 2009 at 2:44 PM, Ian Mallett  wrote:

> On Sat, Oct 10, 2009 at 12:14 PM, Patrick Mullen wrote:
>
>> The main reason I don't use IDLE is because I have had issues in the
>> past with it's runner locking things up.
>
> A fair point.  It seems to have a problem with PyGame--running PyGame code
> with F5 locks it up on exit, or if there's a bug.  I keep the directory with
> the files in it open (which is good anyway) and just run the relevant code
> with a double click.
>


Re: [pygame] Python IDE for windoz

2009-10-10 Thread Ian Mallett
On Sat, Oct 10, 2009 at 12:14 PM, Patrick Mullen wrote:

> The main reason I don't use IDLE is because I have had issues in the
> past with it's runner locking things up.

A fair point.  It seems to have a problem with PyGame--running PyGame code
with F5 locks it up on exit, or if there's a bug.  I keep the directory with
the files in it open (which is good anyway) and just run the relevant code
with a double click.


Re: [pygame] Python IDE for windoz

2009-10-10 Thread Patrick Mullen
The main reason I don't use IDLE is because I have had issues in the
past with it's runner locking things up. Also editing more than one
file at a time is a bit painful. I switched to SciTE for non-ide
programming after about 2 years of using IDLE and never looked back.
That said, IDLE is more competent than it is often given credit for.

I definitely agree with you about some IDE features being overkill and
slowing things down instead of speeding them up.

On Sat, Oct 10, 2009 at 11:49 AM, Ian Mallett  wrote:
> I came to the conclusion that IDEs are designed to make your life easier by
> pinpointing bugs, adding breakpoints, compiling nicely, etc.  I use IDLE
> because it doesn't have any of that--it's just a compiler and a
> text-editor.  I don't have trouble; I think not having spiffy features
> encourages one to write better code in the first place.
>


Re: [pygame] Python IDE for windoz

2009-10-10 Thread Ian Mallett
I came to the conclusion that IDEs are designed to make your life easier by
pinpointing bugs, adding breakpoints, compiling nicely, etc.  I use IDLE
because it doesn't have any of that--it's just a compiler and a
text-editor.  I don't have trouble; I think not having spiffy features
encourages one to write better code in the first place.


Re: [pygame] Python IDE for windoz

2009-10-10 Thread RB[0]
Most? people just don't like it - personally it's all I use, Windows or
otherwise...

On Sat, Oct 10, 2009 at 12:23 PM, Kris Schnee  wrote:

> What's wrong with the built-in editor, IDLE?
>


Re: [pygame] Python IDE for windoz

2009-10-10 Thread Kris Schnee

What's wrong with the built-in editor, IDLE?


Re: [pygame] Python IDE for windoz

2009-10-10 Thread B W
For Windows: Pyscripter

http://www.mmm-experts.com/Products.aspx?ProductId=4

Gumm

On Tue, Oct 6, 2009 at 5:04 PM, pierrelafran...@sympatico.ca <
pierrelafran...@sympatico.ca> wrote:

> Hi
> I have administrator rights on a computor in a lab at work, until
> tomorrow.  I would like install IDE for Python. What do you suggest me ?
>
> I know, I may not write this question in the good room, but I just learn
> this news, and after tomorrow, it will be too late to install Python.
>
> Thanks
> --
> Pierre
>


Re: [pygame] Python IDE for windoz

2009-10-07 Thread Patrick Mullen
Well, it's far too late to solve the OP's problem, but I am going to
double vote my choices of SciTE (when I need an editor for a file
fast, or just don't want to deal with an IDE, which is actually pretty
often) and netbeans which has some really killer tools. (The test
coverage and mercurial integration are pretty slick)

On Wed, Oct 7, 2009 at 4:27 PM, Jake b  wrote:
> I like geany and / or scite. [ Scite's not an IDE, but worth mentioning. ]
>
> On Tue, Oct 6, 2009 at 7:04 PM, pierrelafran...@sympatico.ca
>  wrote:
>>
>> Hi
>> I have administrator rights on a computor in a lab at work, until
>> tomorrow.  I would like install IDE for Python. What do you suggest me ?
>>
>> I know, I may not write this question in the good room, but I just learn
>> this news, and after tomorrow, it will be too late to install Python.
>>
>> Thanks
>> --
>> Pierre
>
>
>
> --
> Jake
>


Re: [pygame] Python IDE for windoz

2009-10-07 Thread Jake b
I like geany and / or scite. [ Scite's not an IDE, but worth mentioning. ]

On Tue, Oct 6, 2009 at 7:04 PM, pierrelafran...@sympatico.ca <
pierrelafran...@sympatico.ca> wrote:

> Hi
> I have administrator rights on a computor in a lab at work, until
> tomorrow.  I would like install IDE for Python. What do you suggest me ?
>
> I know, I may not write this question in the good room, but I just learn
> this news, and after tomorrow, it will be too late to install Python.
>
> Thanks
> --
> Pierre
>



-- 
Jake


Re: [pygame] Python IDE for windoz

2009-10-07 Thread Kevin
I enjoyed SPE when I used it.

http://sourceforge.net/projects/spe/

I just use gVim when I'm on Windows now, though.

On Wed, Oct 7, 2009 at 12:14 AM,  wrote:

>
> Hi,
>
> I like eric4: http://eric-ide.python-projects.org/
> You will also need to install some other libraries like Qt and PyQt4 but
> they are all free.
>
> yours
> //Lorenz
>
> On Tue, 06 Oct 2009 20:04:43 -0400, "pierrelafran...@sympatico.ca" <
> pierrelafran...@sympatico.ca> wrote:
> > Hi
> > I have administrator rights on a computor in a lab at work, until
> > tomorrow.  I would like install IDE for Python. What do you suggest me ?
> >
> > I know, I may not write this question in the good room, but I just learn
> > this news, and after tomorrow, it will be too late to install Python.
> >
> > Thanks
> > --
> > Pierre
>
>


Re: [pygame] Python IDE for windoz

2009-10-07 Thread don

Hi,

I like eric4: http://eric-ide.python-projects.org/
You will also need to install some other libraries like Qt and PyQt4 but they 
are all free.

yours
//Lorenz

On Tue, 06 Oct 2009 20:04:43 -0400, "pierrelafran...@sympatico.ca" 
 wrote:
> Hi
> I have administrator rights on a computor in a lab at work, until
> tomorrow.  I would like install IDE for Python. What do you suggest me ?
> 
> I know, I may not write this question in the good room, but I just learn
> this news, and after tomorrow, it will be too late to install Python.
> 
> Thanks
> --
> Pierre



Re: [pygame] Python IDE for windoz

2009-10-06 Thread Thadeus Burgess
Look into Eclipse + Pydev, or Aptana + Pydev, or Netbeans 6.7 (has python
beta)

-Thadeus




On Tue, Oct 6, 2009 at 8:03 PM, Eric Pavey  wrote:

> I really enjoy Wing IDE
> http://www.wingware.com/
>
> Free to start, and once you learn more, the $$$ version is worth the money
> IMO
>


Re: [pygame] Python IDE for windoz

2009-10-06 Thread Eric Pavey
I really enjoy Wing IDE
http://www.wingware.com/

Free to start, and once you learn more, the $$$ version is worth the money
IMO


[pygame] Python IDE for windoz

2009-10-06 Thread pierrelafran...@sympatico.ca
Hi
I have administrator rights on a computor in a lab at work, until
tomorrow.  I would like install IDE for Python. What do you suggest me ?

I know, I may not write this question in the good room, but I just learn
this news, and after tomorrow, it will be too late to install Python.

Thanks
-- 
Pierre