MCPcopy Index your code
hub / github.com/PySimpleGUI/PySimpleGUI / _queued_thread_event_available

Method _queued_thread_event_available

PySimpleGUI/PySimpleGUI.py:12272–12281  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

12270 return message
12271
12272 def _queued_thread_event_available(self):
12273
12274 if self.thread_queue is None:
12275 return False
12276 # self.thread_lock.acquire()
12277 qsize = self.thread_queue.qsize()
12278 if qsize == 0:
12279 self.thread_timer = None
12280 # self.thread_lock.release()
12281 return qsize != 0
12282
12283 def _RightClickMenuCallback(self, event):
12284 """

Callers 3

_readMethod · 0.95
read_all_windowsFunction · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected