Neal Norwitz <[EMAIL PROTECTED]> added the comment:

StandardError has been removed from Python 3.0.  It's use is deprecated.
 Instead of catching StandardError, do:

  try:
    # ...
  except Exception:
    # ...

----------
assignee: loewis -> nnorwitz
nosy: +nnorwitz
resolution:  -> out of date
status: open -> closed

_____________________________________
Tracker <[EMAIL PROTECTED]>
<http://bugs.python.org/issue1068881>
_____________________________________
_______________________________________________
Python-bugs-list mailing list 
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to