Hi all.
In many parts of my code I've the following schema of code:
def isInUseByOutgoi ngRegistrations (self, archivefolder):
for instance in self.findActive OutgoingRegistr ationInstances( ):
if instance.forbid ToClose(archive folder):
return True
return False
Before devising my own solution for this kind of problem, I wonder if
there is a common solution for the problem. I'm looking for a
python2.3 solution.
Regards
Marco
--
Marco Bizzarri
In many parts of my code I've the following schema of code:
def isInUseByOutgoi ngRegistrations (self, archivefolder):
for instance in self.findActive OutgoingRegistr ationInstances( ):
if instance.forbid ToClose(archive folder):
return True
return False
Before devising my own solution for this kind of problem, I wonder if
there is a common solution for the problem. I'm looking for a
python2.3 solution.
Regards
Marco
--
Marco Bizzarri
Comment