[issue15227] Fatal Python error: PyEval_RestoreThread: NULL tstate on example script..

2015-04-07 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- resolution: -> out of date stage: -> resolved status: open -> closed ___ Python tracker ___ ___ Pyt

[issue15227] Fatal Python error: PyEval_RestoreThread: NULL tstate on example script..

2014-02-12 Thread T. Maslach
T. Maslach added the comment: I just tried this in Python 2.7.6 and it works... So, it looks to be fixed! -- ___ Python tracker ___ __

[issue15227] Fatal Python error: PyEval_RestoreThread: NULL tstate on example script..

2014-02-11 Thread Antoine Pitrou
Changes by Antoine Pitrou : -- nosy: +serhiy.storchaka status: pending -> open ___ Python tracker ___ ___ Python-bugs-list mailing lis

[issue15227] Fatal Python error: PyEval_RestoreThread: NULL tstate on example script..

2014-02-09 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- status: open -> pending ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https:

[issue15227] Fatal Python error: PyEval_RestoreThread: NULL tstate on example script..

2012-07-06 Thread Terry J. Reedy
Terry J. Reedy added the comment: On 3.3b0, Win7, 64-64 bit, run from IDLE, script brings up empty tk window. Closing it gives prompt back in Shell window. Maslach, can you retry with 2.7.3 (bug fix is generally a good idea anyway) and maybe 64 bit version (you can install both 32 bit and 64

[issue15227] Fatal Python error: PyEval_RestoreThread: NULL tstate on example script..

2012-06-30 Thread Antoine Pitrou
Changes by Antoine Pitrou : -- nosy: +gpolo, loewis ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail

[issue15227] Fatal Python error: PyEval_RestoreThread: NULL tstate on example script..

2012-06-29 Thread Thomas Maslach
New submission from Thomas Maslach : I've been running into a bug recently and reduced the code to the following: import Tkinter tk = Tkinter.Tk() window = Tkinter.Frame(tk) def onDestroy (event): pass window.bind ("", onDestroy) Just run and the following will be display