Re: [Tutor] Python IDE

2007-06-12 Thread Matt Erasmus
Check out geany. It's fairly simple but I've found it very neat and simple. http://geany.uvena.de/ On 6/11/07, scott <[EMAIL PROTECTED]> wrote: Could someone suggest a few good IDE's for me to look at. I would need a IDE that haves syntax highlighting and I also really like type compl

Re: [Tutor] Python IDE

2007-06-12 Thread scott
Preecha Bundrikwong wrote: > Hi, > > I'm supporting John's opinion. WingIDE rocks!! I use Linux at work, > Windows & Mac at home, I notice the Python editor on Windows also hints > you the syntax as you type. Thank you everyone for your help. I'm going to try out eclipse because I have a newe

Re: [Tutor] Tutor Digest, Vol 40, Issue 25

2007-06-12 Thread Vishnu Mohan
> > Message: 2 > Date: Sun, 10 Jun 2007 09:20:28 -0500 > From: David Hamilton <[EMAIL PROTECTED]> > Subject: [Tutor] Correct use of range function.. > To: tutor@python.org > Message-ID: <[EMAIL PROTECTED]> > Content-Type: text/plain; charset=ISO-8859-1; format=flowed > > I just finished doing an e

Re: [Tutor] cannot pickle instancemethod objects

2007-06-12 Thread Andreas Kostyrka
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 pickle is not capable of pickling class objects. Only instances of the class. Actually, pickle only records the name of the class an object belongs to, so renaming or moving pickled classes means additional work, to map old to new names. Andreas hok

Re: [Tutor] cannot pickle instancemethod objects

2007-06-12 Thread Kent Johnson
hok kakada wrote: > Dear everyone, > > I got a problem while pickling a class object. I have done something as below: > pickleFile = open(filename, 'wb') > pickle.dump(matcher, pickleFile) > pickleFile.close() > > where matcher is class object and I got the follow errors:

Re: [Tutor] clarification on os.path.walk

2007-06-12 Thread Alan Gauld
"Luke Paireepinart" <[EMAIL PROTECTED]> wrote > Chandrashekar wrote: >> I have a program like this. >> def print_files(arg,dir,files): >> for file in files: >> path = os.path.join(dir,file) >> path = os.path.normcase(path) >> if re.search(r".*\.txt",path): >>