Tagged Questions
3
votes
1answer
1k views
Tkinter locks python when Icon loaded and tk.mainloop in a thread
Here's the test case...
import Tkinter as tk
import thread
from time import sleep
if __name__ == '__main__':
t = tk.Tk()
thread.start_new_thread(t.mainloop, ())
# ...
1
vote
1answer
54 views
Stackless Python - profile single tasklet execution time
In my server written in Stackless Python, I occasionally am getting large spikes in CPU usage for 5-10 seconds durations. This happens sporadically so I'm having trouble tracking it down.
I've ...