MCPcopy Index your code
hub / github.com/ipython/ipython / start_event_loop_qt4

Function start_event_loop_qt4

IPython/lib/guisupport.py:138–147  ·  view source on GitHub ↗

Start the qt event loop in a consistent manner.

(app=None)

Source from the content-addressed store, hash-verified

136 return False
137
138def start_event_loop_qt4(app=None):
139 """Start the qt event loop in a consistent manner."""
140 if app is None:
141 app = get_app_qt4([""])
142 if not is_event_loop_running_qt4(app):
143 app._in_event_loop = True
144 app.exec_()
145 app._in_event_loop = False
146 else:
147 app._in_event_loop = True
148
149#-----------------------------------------------------------------------------
150# Tk

Callers 1

gui-qt.pyFile · 0.90

Calls 2

get_app_qt4Function · 0.85

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…