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 vstinner
Recipients socketpair, vstinner
Date 2016-01-29.09:42:33
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1454060553.53.0.719269354369.issue26237@psf.upfronthosting.co.za>
In-reply-to
Content
Yes, it's a deliberate change in the Python language. You have to copy "e" to a different variable:

err = None
try:
  ...
except Exception as exc:
  err = exc
print(err)
History
Date User Action Args
2016-01-29 09:42:33vstinnersetrecipients: + vstinner, socketpair
2016-01-29 09:42:33vstinnersetmessageid: <1454060553.53.0.719269354369.issue26237@psf.upfronthosting.co.za>
2016-01-29 09:42:33vstinnerlinkissue26237 messages
2016-01-29 09:42:33vstinnercreate