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
* 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
* 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
* 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
* 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
* 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'."
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
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'."
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 )