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 terry.reedy
Recipients benrg, r.david.murray, terry.reedy
Date 2010-06-04.21:22:20
SpamBayes Score 1.626387e-05
Marked as misclassified No
Message-id <1275686542.46.0.763477032981.issue8847@psf.upfronthosting.co.za>
In-reply-to
Content
Running the exact same binary on winxp with an amd athlon processor,
I *did* get a crash after about 5 seconds. "python.exe has encountered a problem and needs to close.  We are sorry for the inconvenience."
Trying again with IDLE instead of the command window, I get the same message (for pythonw instead of python) and the shell restarts when I close the message.

Even though foo()+[1] correctly raises a TypeError, the reverse [1] + foo() very bizarrely produces a length 1 tuple whose bizarre member is supposedly an instance of a empty list [] with length 1

from collections import namedtuple
foo = namedtuple('foo', '')
a = [1] + foo()
b=a[0]
print (type(a), len(a), type(b), len(type(b)), type(type(b)))

# <class 'tuple'> 1 [] 1 <class 'list'>

([2]+foo() produces same output)

Other than the above, any attempt to do anything with b or type(b) that I tried crashes. I presume that this is due to attribute lookups on the invalid type(b) (or something like that), which type(b) must bypass. In particular, the OP's crash is due to trying to print the tuple which tries to print its member which looks for type(b).__str__ which crashes.

To anyone: investigating crashers like this is a lot easier with IDLE and an edit window than with the interactive command window.
History
Date User Action Args
2010-06-04 21:22:22terry.reedysetrecipients: + terry.reedy, r.david.murray, benrg
2010-06-04 21:22:22terry.reedysetmessageid: <1275686542.46.0.763477032981.issue8847@psf.upfronthosting.co.za>
2010-06-04 21:22:20terry.reedylinkissue8847 messages
2010-06-04 21:22:20terry.reedycreate