Skip to content

Commit f07013d

Browse files
committed
Remove flag added to legacy debug options
1 parent 97438f1 commit f07013d

File tree

1 file changed

+0
-5
lines changed

1 file changed

+0
-5
lines changed

src/debugpy/_vendored/pydevd/_pydevd_bundle/pydevd_json_debug_options.py

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -63,9 +63,6 @@ def update_fom_debug_options(self, debug_options):
6363

6464
# Note: _max_exception_stack_frames cannot be set by debug options.
6565

66-
if 'ENABLE_GUI_EVENT_LOOP' in debug_options:
67-
self.enable_gui_event_loop = debug_options.get('ENABLE_GUI_EVENT_LOOP')
68-
6966
def update_from_args(self, args):
7067
if 'justMyCode' in args:
7168
self.just_my_code = bool_parser(args['justMyCode'])
@@ -143,7 +140,6 @@ def unquote(s):
143140
'STOP_ON_ENTRY': bool_parser,
144141
'SHOW_RETURN_VALUE': bool_parser,
145142
'MULTIPROCESS': bool_parser,
146-
'ENABLE_GUI_EVENT_LOOP': bool_parser,
147143
}
148144

149145
DEBUG_OPTIONS_BY_FLAG = {
@@ -161,7 +157,6 @@ def unquote(s):
161157
'StopOnEntry': 'STOP_ON_ENTRY=True',
162158
'ShowReturnValue': 'SHOW_RETURN_VALUE=True',
163159
'Multiprocess': 'MULTIPROCESS=True',
164-
'GuiEventLoop': 'ENABLE_GUI_EVENT_LOOP=True',
165160
}
166161

167162

0 commit comments

Comments
 (0)