[issue5918] test_parser crashes when run after some other tests

2009-05-14 Thread Antoine Pitrou
Antoine Pitrou added the comment: I've committed the patch, thanks! -- resolution: -> fixed status: open -> closed ___ Python tracker ___ ___

[issue5918] test_parser crashes when run after some other tests

2009-05-08 Thread Antoine Pitrou
Antoine Pitrou added the comment: Great! The patch seems to fix it (although it's difficult to say for sure since the crashes were intermittent). I apologize for incriminating distutils. -- ___ Python tracker _

[issue5918] test_parser crashes when run after some other tests

2009-05-07 Thread Amaury Forgeot d'Arc
Amaury Forgeot d'Arc added the comment: It's actually an array bounds read error in parsermodule.c::validate_try. Purify detects it, if you disable pymalloc; distutils is innocent. Patch attached. -- keywords: +patch nosy: +amaury.forgeotdarc Added file: http://bugs.python.org/file139

[issue5918] test_parser crashes when run after some other tests

2009-05-03 Thread Antoine Pitrou
Antoine Pitrou added the comment: Sorry, it also fails with "./python -m test.regrtest test_os test_parser", so it's not caused by test_distutils. -- assignee: tarek -> title: test_parser crashes when run after test_distutils -> test_parser crashes when run after some other tests ___