File tree Expand file tree Collapse file tree 1 file changed +1
-4
lines changed
Expand file tree Collapse file tree 1 file changed +1
-4
lines changed Original file line number Diff line number Diff line change @@ -132,14 +132,11 @@ Runtime State Extensions
132132
133133A new structure is added to PyThreadState to support remote debugging:
134134
135- debugging:
136-
137135.. code-block :: C
138136
139137 typedef struct _remote_debugger_support {
140138 int debugger_pending_call;
141139 char debugger_script_path[MAX_SCRIPT_PATH_SIZE];
142- char *debugger_buffer;
143140 Py_ssize_t debugger_buffer_size;
144141 } _PyRemoteDebuggerSupport;
145142
@@ -475,7 +472,7 @@ Using a Single Runtime Buffer
475472
476473During the review of this PEP it has been suggested using a single
477474shared buffer at the runtime level for all debugger communications. While this
478- appeared simpler and requring less memory , we discovered it would actually prevent scenarios
475+ appeared simpler and requiring less memory, we discovered it would actually prevent scenarios
479476where multiple debuggers need to coordinate operations across different threads,
480477or where a single debugger needs to orchestrate complex debugging operations. A
481478single shared buffer would force serialization of all debugging operations,
You can’t perform that action at this time.
0 commit comments