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 ppperry
Recipients ppperry, terry.reedy
Date 2018-09-23.18:39:03
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1537727943.66.0.956365154283.issue34779@psf.upfronthosting.co.za>
In-reply-to
Content
>>> class NoRepr:
	def __repr__(self):
		raise ValueError
>>> NoRepr()
Traceback (most recent call last):
  File "<pyshell#44>", line 1, in <module>
    NoRepr()
  File "C:\Program Files\Python37\lib\idlelib\rpc.py", line 617, in displayhook
    text = repr(value)
  File "<pyshell#43>", line 3, in __repr__
    raise ValueError
ValueError

What should happen in this case isn't exactly clear, but the current traceback is wrong in multiple ways.
History
Date User Action Args
2018-09-23 18:39:03ppperrysetrecipients: + ppperry, terry.reedy
2018-09-23 18:39:03ppperrysetmessageid: <1537727943.66.0.956365154283.issue34779@psf.upfronthosting.co.za>
2018-09-23 18:39:03ppperrylinkissue34779 messages
2018-09-23 18:39:03ppperrycreate