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 Camion, ppperry, terry.reedy
Date 2017-12-04.03:43:39
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1512359020.25.0.213398074469.issue32140@psf.upfronthosting.co.za>
In-reply-to
Content
Simplified reproducer for same bug without any imports:

class BadRepr:
	def __repr__(self):
		1/0
def broken():
    x=BadRepr()
    x=x #filler line for debugger

In this case, the problematic BadRepr object in the "broken" function explictly has a broken __repr__, but the uninitialized Fraction object in the "__new__" function of the Fraction class has a similarly broken __repr__
History
Date User Action Args
2017-12-04 03:43:40ppperrysetrecipients: + ppperry, terry.reedy, Camion
2017-12-04 03:43:40ppperrysetmessageid: <1512359020.25.0.213398074469.issue32140@psf.upfronthosting.co.za>
2017-12-04 03:43:40ppperrylinkissue32140 messages
2017-12-04 03:43:39ppperrycreate