Re: [Tutor] ls *.py[co] >> .hidden

2015-05-22 Thread Danny Yoo
>> I thought we'd established that this was to >> control visibility in the File Manager GUI >> not the CLI? So an 'ls' flag isn't going to >> help there. > > > Yes, it was about the visibility in Nautilius. Much easier on the eye when > the bytecode files are not visible. Ah, I was confused the

Re: [Tutor] key detection

2015-05-22 Thread Brandon McCaig
Dave: Sorry for the late reply, but it sounds like it could help a few people here... On Wed, May 6, 2015 at 9:39 AM, Dave Angel wrote: > Many people don't realize that you can turn on a better screen copy feature > for the CMD window (DOS box) in Windows. > > I've given up Windows, and no longe

[Tutor] Is there a way to use "with" across suite boundaries?

2015-05-22 Thread Jim Mooney Py3.4.3winXP
'''I was using with open...:, but I'm printing a header in one function, calling a looping function to print detail lines, then returning to the calling function to print the footer. But that didn't work since the with statement only seems to work with the lexical suite and the file wasn't open in

Re: [Tutor] Is there a way to use "with" across suite boundaries?

2015-05-22 Thread Peter Otten
Jim Mooney Py3.4.3winXP wrote: > '''I was using with open...:, but I'm printing a header in one function, > calling a looping > function to print detail lines, then returning to the calling function to > print > the footer. But that didn't work since the with statement only seems to > work with th