Makes perfect sense. Sometimes it takes being whacked to see it the
right way.
Thanks!
Ben Finney wrote:
> "[EMAIL PROTECTED]" <[EMAIL PROTECTED]> writes:
>
> > Is there a way to get around recursion limits? Help!
> >
> > ~~
> >
> > def incrementProgress
DOLT!
Thanks!
Dennis Lee Bieber wrote:
> On 18 Sep 2006 19:38:48 -0700, "[EMAIL PROTECTED]"
> <[EMAIL PROTECTED]> declaimed the following in comp.lang.python:
>
> >
> > Is there a way to get around recursion limits? Help!
> >
> Yes... restructure your code to not use recursion...
>
>
"[EMAIL PROTECTED]" <[EMAIL PROTECTED]> writes:
> Is there a way to get around recursion limits? Help!
>
> ~~
>
> def incrementProgress(self, window, workorder):
> #...
> time.sleep(.1)
> self.incrementProgress(wi
I'm making a small interface for copying large groups of files around a
filesystem. I have a progressbar that counts the items in the
destination, and increments as each new file is copied over. It
compares this number to the number of files in the source and updates
accordingly.
All is fine and