[Tutor] XP and python 2.4, some progress

2005-01-08 Thread Jeffrey Thomas Peery
I wasn’t able to get the IDLE started in windows XP. I had it working then I upgraded to 2.4, then it didn’t work so I switched back to 2.3, still didn’t work so I’m back to 2.4.  I did some looking around and I was able to get the IDLE started by setting the shortcut on my desktop to:  

[Tutor] (no subject)

2005-01-08 Thread Jeffrey Thomas Peery
Hello I can’t seem to get the IDLE to start up in my windows XP by clicking on the desktop icon. To start it I have to drop a .py file on the icon. Any ideas?   Also I can’t seem to get xp to recognize .py files belonging to python. Right now the icons for .py is a windows default and not

Re: [Tutor] German Tutorials auf Deutsch

2005-01-08 Thread Chad Crabtree
Jacob S. wrote: >## Spoken by Ara ## >Pardon to the non-german speaking (or readers) on the list. > >Guten Tag. Mein Deutsch ist nicht so gut (ich habe keinen Deutsche in sieben > > Good Day. My German is not so good (I have writen very little german in seven years) >Jahren geschreiben). Mann

RE: [Tutor] walking directories

2005-01-08 Thread Nick Lunt
>>From: Ryan Davis [mailto:[EMAIL PROTECTED] ?? >>I think you want to be doing something like: >> >>>for r,d,f in os.walk('.'): >>... for filename in f: >>... print os.path.join(r,filename) >> >>I think that would give you the full path of every file, and then you can open it, do a rege

Re: [Tutor] walking directories

2005-01-08 Thread Alan Gauld
> > Shouldn't that be os.path.walk()? > > It says in the documentation (it might be the newer ones?): > > "Note: The newer os.walk() generator supplies similar functionality and can > be easier to use." > -- 6.2 os.path -- Common pathname manipulations Ah, I assume that must be a 2.3 additio