> you:
>
> > Makes me wonder if it makes sense to move KeyboardInterrupt up the
> > hierarchy and promote the use of StandardError...
>
> which is pretty silly until we have a statement like:
>
> try:
> ...
> except not StandardError:
> raise
> finally:
> ...
>
umm. how's that different from
try:
...
except StandardError:
pass
</F>