File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -135,9 +135,9 @@ A new structure is added to PyThreadState to support remote debugging:
135
135
136
136
.. code-block :: C
137
137
138
- typedef struct _remote_debugger_support {
138
+ typedef struct {
139
139
int debugger_pending_call;
140
- char debugger_script_path[MAX_SCRIPT_PATH_SIZE ];
140
+ char debugger_script_path[Py_MAX_SCRIPT_PATH_SIZE ];
141
141
} _PyRemoteDebuggerSupport;
142
142
143
143
This structure is appended to ``PyThreadState ``, adding only a few fields that
@@ -147,7 +147,7 @@ provides a filesystem path to a Python source file (.py) that will be executed w
147
147
the interpreter reaches a safe point. The path must point to a Python source file,
148
148
not compiled Python code (.pyc) or any other format.
149
149
150
- The value for ``MAX_SCRIPT_PATH_SIZE `` will be a trade-off between binary size
150
+ The value for ``Py_MAX_SCRIPT_PATH_SIZE `` will be a trade-off between binary size
151
151
and how big debugging scripts' paths can be. To limit the memory overhead per
152
152
thread we will be limiting this to 512 bytes. This size will also be provided as
153
153
part of the debugger support structure so debuggers know how much they can
You can’t perform that action at this time.
0 commit comments