Skip to content

Commit f25d3f9

Browse files
Export fewer symbols.
1 parent 2c9fa96 commit f25d3f9

File tree

2 files changed

+1
-4
lines changed

2 files changed

+1
-4
lines changed

Include/internal/pycore_crossinterp.h

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -186,9 +186,6 @@ typedef struct _sharedexception {
186186
_Py_excinfo uncaught;
187187
} _PyXI_exception_info;
188188

189-
PyAPI_FUNC(void) _PyXI_ApplyExceptionInfo(
190-
_PyXI_exception_info *info,
191-
PyObject *exctype);
192189

193190
typedef struct xi_session _PyXI_session;
194191
typedef struct _sharedns _PyXI_namespace;

Python/crossinterp.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -928,7 +928,7 @@ _PyXI_InitExceptionInfo(_PyXI_exception_info *info,
928928
return failure;
929929
}
930930

931-
void
931+
static void
932932
_PyXI_ApplyExceptionInfo(_PyXI_exception_info *info, PyObject *exctype)
933933
{
934934
if (exctype == NULL) {

0 commit comments

Comments
 (0)