This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author nnorwitz
Recipients loewis, nnorwitz, reowen
Date 2008-03-21.05:07:52
SpamBayes Score 0.3477085
Marked as misclassified No
Message-id <1206076073.92.0.00958617975369.issue1068881@psf.upfronthosting.co.za>
In-reply-to
Content
StandardError has been removed from Python 3.0.  It's use is deprecated.
 Instead of catching StandardError, do:

  try:
    # ...
  except Exception:
    # ...
History
Date User Action Args
2008-03-21 05:07:54nnorwitzsetspambayes_score: 0.347708 -> 0.3477085
recipients: + nnorwitz, loewis, reowen
2008-03-21 05:07:54nnorwitzsetspambayes_score: 0.347708 -> 0.347708
messageid: <1206076073.92.0.00958617975369.issue1068881@psf.upfronthosting.co.za>
2008-03-21 05:07:52nnorwitzlinkissue1068881 messages
2008-03-21 05:07:52nnorwitzcreate