Skip to content

Commit 22fdc33

Browse files
committed
Move header file
1 parent 97beb5d commit 22fdc33

File tree

6 files changed

+2
-7
lines changed

6 files changed

+2
-7
lines changed

Makefile.pre.in

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1290,7 +1290,6 @@ PYTHON_HEADERS= \
12901290
$(srcdir)/Include/internal/pycore_crossinterp.h \
12911291
$(srcdir)/Include/internal/pycore_crossinterp_data_registry.h \
12921292
$(srcdir)/Include/internal/pycore_debug_offsets.h \
1293-
$(srcdir)/Include/internal/pycore_remote_debug.h \
12941293
$(srcdir)/Include/internal/pycore_descrobject.h \
12951294
$(srcdir)/Include/internal/pycore_dict.h \
12961295
$(srcdir)/Include/internal/pycore_dict_state.h \

Modules/_testexternalinspection.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
#include <internal/pycore_interpframe.h> // FRAME_OWNED_BY_CSTACK
1818
#include <internal/pycore_llist.h> // struct llist_node
1919
#include <internal/pycore_stackref.h> // Py_TAG_BITS
20-
#include <internal/pycore_remote_debug.h> // proc_handle_t
20+
#include "../Python/remote_debug.h"
2121

2222
#ifndef HAVE_PROCESS_VM_READV
2323
# define HAVE_PROCESS_VM_READV 0

PCbuild/pythoncore.vcxproj

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -232,7 +232,6 @@
232232
<ClInclude Include="..\Include\internal\pycore_crossinterp.h" />
233233
<ClInclude Include="..\Include\internal\pycore_crossinterp_data_registry.h" />
234234
<ClInclude Include="..\Include\internal\pycore_debug_offsets.h" />
235-
<ClInclude Include="..\Include\internal\pycore_remote_debug.h" />
236235
<ClInclude Include="..\Include\internal\pycore_descrobject.h" />
237236
<ClInclude Include="..\Include\internal\pycore_dict.h" />
238237
<ClInclude Include="..\Include\internal\pycore_dict_state.h" />

PCbuild/pythoncore.vcxproj.filters

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -612,9 +612,6 @@
612612
<ClInclude Include="..\Include\internal\pycore_debug_offsets.h">
613613
<Filter>Include\internal</Filter>
614614
</ClInclude>
615-
<ClInclude Include="..\Include\internal\pycore_remote_debug.h">
616-
<Filter>Include\internal</Filter>
617-
</ClInclude>
618615
<ClInclude Include="..\Include\internal\pycore_descrobject.h">
619616
<Filter>Include\internal</Filter>
620617
</ClInclude>

Python/remote_debugging.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
#include "internal/pycore_ceval.h"
77

88
#if defined(Py_REMOTE_DEBUG) && defined(Py_SUPPORTS_REMOTE_DEBUG)
9-
#include "internal/pycore_remote_debug.h"
9+
#include "remote_debug.h"
1010

1111
static int
1212
init_proc_handle(proc_handle_t *handle, pid_t pid) {

0 commit comments

Comments
 (0)