Skip to content

Commit

Permalink
Export fewer symbols.
Browse files Browse the repository at this point in the history
  • Loading branch information
ericsnowcurrently committed Nov 3, 2023
1 parent 2c9fa96 commit f25d3f9
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 4 deletions.
3 changes: 0 additions & 3 deletions Include/internal/pycore_crossinterp.h
Original file line number Diff line number Diff line change
Expand Up @@ -186,9 +186,6 @@ typedef struct _sharedexception {
_Py_excinfo uncaught;
} _PyXI_exception_info;

PyAPI_FUNC(void) _PyXI_ApplyExceptionInfo(
_PyXI_exception_info *info,
PyObject *exctype);

typedef struct xi_session _PyXI_session;
typedef struct _sharedns _PyXI_namespace;
Expand Down
2 changes: 1 addition & 1 deletion Python/crossinterp.c
Original file line number Diff line number Diff line change
Expand Up @@ -928,7 +928,7 @@ _PyXI_InitExceptionInfo(_PyXI_exception_info *info,
return failure;
}

void
static void
_PyXI_ApplyExceptionInfo(_PyXI_exception_info *info, PyObject *exctype)
{
if (exctype == NULL) {
Expand Down

0 comments on commit f25d3f9

Please sign in to comment.