Is the behavior below expected? If so, why is the exception not caught? Thanks, Alan Isaac
>>> x,y='','' >>> try: x/y ... except TypeError: print 'oops' ... Traceback (most recent call last): File "<stdin>", line 1, in <module> TypeError: unsupported operand type(s) for /: 'str' and 'str' -- http://mail.python.org/mailman/listinfo/python-list