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 mark.dickinson
Recipients Jocjo, mark.dickinson
Date 2012-11-17.09:34:03
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1353144843.57.0.502887034296.issue16491@psf.upfronthosting.co.za>
In-reply-to
Content
Here's the contents of the .rtf file:

PythonWin 3.3.0 (v3.3.0:bd8afb90ebf2, Sep 29 2012, 10:57:17) [MSC v.1600 64 bit (AMD64)] on win32.
Portions Copyright 1994-2008 Mark Hammond - see 'Help/About PythonWin' for further copyright information.
try:
... 	1/0
... except ZeroDivisionError as exp:
... 	raise TypeError('Divided by 0')
... 
Traceback (most recent call last):
  File "<interactive input>", line 4, in <module>
TypeError: Divided by 0
try:
... 	1/0
... except ZeroDivisionError as exp:
... 	raise TypeError('Divided by 0') from exp
... 
Traceback (most recent call last):
  File "<interactive input>", line 4, in <module>
TypeError: Divided by 0
try:
... 	1/0
... except ZeroDivisionError:
... 	raise TypeError('Divided by 0') from None
... 
Traceback (most recent call last):
  File "<interactive input>", line 4, in <module>
TypeError: Divided by 0
History
Date User Action Args
2012-11-17 09:34:03mark.dickinsonsetrecipients: + mark.dickinson, Jocjo
2012-11-17 09:34:03mark.dickinsonsetmessageid: <1353144843.57.0.502887034296.issue16491@psf.upfronthosting.co.za>
2012-11-17 09:34:03mark.dickinsonlinkissue16491 messages
2012-11-17 09:34:03mark.dickinsoncreate