Re: Can anyone reproduce this crash?

2010-04-16 Thread Terry Reedy
On 4/16/2010 9:50 AM, Alf P. Steinbach wrote: * Alf P. Steinbach: Found a another bug discussion with * same exception, 0xc417 STATUS_INVALID_CRUNTIME_PARAMETER * same address, 0x78588389 * almost same Python version, namely Py3, * almost same context, namely occurring when program term

Re: Can anyone reproduce this crash?

2010-04-16 Thread Alf P. Steinbach
* Alf P. Steinbach: Found a another bug discussion with * same exception, 0xc417 STATUS_INVALID_CRUNTIME_PARAMETER * same address, 0x78588389 * almost same Python version, namely Py3, * almost same context, namely occurring when program terminates, at http://w

Re: Can anyone reproduce this crash?

2010-04-16 Thread Alf P. Steinbach
* Alf P. Steinbach: * Alf P. Steinbach: > [About baffling almost not reproducible interpreter crash on Ctrl C] The error code 0xc417 is some custom one, not a standard Windows code. Sorry, I was wrong about that, just that the MS ErrLook utility didn't find it. http://social.msdn.mi

Re: Can anyone reproduce this crash?

2010-04-16 Thread Alf P. Steinbach
* Alf P. Steinbach: > [About baffling almost not reproducible interpreter crash on Ctrl C] The error code 0xc417 is some custom one, not a standard Windows code. Sorry, I was wrong about that, just that the MS ErrLook utility didn't find it. http://social.msdn.microsoft.com/Forums/en-US

Re: Can anyone reproduce this crash?

2010-04-16 Thread Alf P. Steinbach
* Alf P. Steinbach: * MRAB: Alf P. Steinbach wrote: Python 3.1.1 in Windows XP Prof: def number_from_user( prompt ): while True: spec = input( prompt ) try: return float( spec ) except ValueError: s = "Sorry, '{}' is not a valid number spec

Re: Can anyone reproduce this crash?

2010-04-16 Thread Alf P. Steinbach
* MRAB: Alf P. Steinbach wrote: Python 3.1.1 in Windows XP Prof: def number_from_user( prompt ): while True: spec = input( prompt ) try: return float( spec ) except ValueError: s = "Sorry, '{}' is not a valid number spec. Try e.g. '3.14'."

Re: Can anyone reproduce this crash?

2010-04-16 Thread Lie Ryan
On 04/16/10 21:29, MRAB wrote: > Alf P. Steinbach wrote: >> I thought I'd report this so I tried it several times more but unable >> to reproduce: instead of above hang + crash + truncated traceback the >> complete expected traceback appeared and the program terminated properly. >> >> Can anyone re

Re: Can anyone reproduce this crash?

2010-04-16 Thread MRAB
Alf P. Steinbach wrote: Python 3.1.1 in Windows XP Prof: def number_from_user( prompt ): while True: spec = input( prompt ) try: return float( spec ) except ValueError: s = "Sorry, '{}' is not a valid number spec. Try e.g. '3.14'."

Can anyone reproduce this crash?

2010-04-16 Thread Alf P. Steinbach
Python 3.1.1 in Windows XP Prof: def number_from_user( prompt ): while True: spec = input( prompt ) try: return float( spec ) except ValueError: s = "Sorry, '{}' is not a valid number spec. Try e.g. '3.14'." print( s.format( spec )