[issue28061] Python crashes on 'from test import support'

2016-09-10 Thread Emanuel Barry
Changes by Emanuel Barry : -- components: +Windows nosy: +paul.moore, steve.dower, tim.golden, zach.ware ___ Python tracker ___ ___ Py

[issue28061] Python crashes on 'from test import support'

2016-09-10 Thread Emanuel Barry
Emanuel Barry added the comment: I compiled, I got a "Python stopped working" during compiling (but it went on anyway), and then launched it from VS in Debugging mode. I did 'from test import support' and then it crashed. VS said this line was the faulty one, and didn't give me anything else u

[issue28061] Python crashes on 'from test import support'

2016-09-10 Thread STINNER Victor
STINNER Victor added the comment: > VS breaks at line Objects/dictobject.c:2339 - 'if > (mp->ma_keys->dk_usable * 3 < other->ma_used * 2)' Can you elaborate? Does the compilation fail? Did you get a crash? What was you doing while getting this error/message? ... Can you please give cl

[issue28061] Python crashes on 'from test import support'

2016-09-10 Thread INADA Naoki
INADA Naoki added the comment: According to IRC log, the issue happens on Windows. And hg revision is a477ef882a16. I'll try building Python on Windows 10 amd64 in this weekend. -- ___ Python tracker _

[issue28061] Python crashes on 'from test import support'

2016-09-10 Thread Emanuel Barry
Emanuel Barry added the comment: Latest, i.e. https://hg.python.org/cpython/rev/a477ef882a16 -- ___ Python tracker ___ ___ Python-bugs

[issue28061] Python crashes on 'from test import support'

2016-09-10 Thread INADA Naoki
INADA Naoki added the comment: Which hg (or git) revision do you use? -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsu

[issue28061] Python crashes on 'from test import support'

2016-09-10 Thread Emanuel Barry
New submission from Emanuel Barry: VS breaks at line Objects/dictobject.c:2339 - 'if (mp->ma_keys->dk_usable * 3 < other->ma_used * 2)' I don't have any more useful information; I'm running Windows 7. -- components: Interpreter Core messages: 275627 nosy: ebarry, haypo, methane