Daniel Schüle wrote:
> Hi
> 
> 
>>You can't easily list the exceptions that your code could throw. There are
>>some obvious ones apart from IOError: say filename was an int (or even
>>certain strings) you would get TypeError, or you might get MemoryError or
>>KeyboardInterrupt. More obscurely, if you reused file as a global variable
>>you could generate any exception at all.
> 
> 
> I undestand now, so it would be better to let it in the code
> in case it's triggered 

Nope. Let it propagate, so you have a full traceback. traceback are usefull.




-- 
bruno desthuilliers
python -c "print '@'.join(['.'.join([w[::-1] for w in p.split('.')]) for
p in '[EMAIL PROTECTED]'.split('@')])"
-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to