Skip to content

Commit 4629c0d

Browse files
authored
Hide some symbols from _xxsubinterpreters. (GH-8151)
1 parent cb4bae7 commit 4629c0d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Modules/_xxsubinterpretersmodule.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1201,7 +1201,7 @@ _channels_drop_id_object(_channels *channels, int64_t id)
12011201
PyThread_release_lock(channels->mutex);
12021202
}
12031203

1204-
int64_t *
1204+
static int64_t *
12051205
_channels_list_all(_channels *channels, int64_t *count)
12061206
{
12071207
int64_t *cids = NULL;
@@ -1545,7 +1545,7 @@ channelid_str(PyObject *self)
15451545
return PyUnicode_FromFormat("%" PRId64 "", cid->id);
15461546
}
15471547

1548-
PyObject *
1548+
static PyObject *
15491549
channelid_int(PyObject *self)
15501550
{
15511551
channelid *cid = (channelid *)self;

0 commit comments

Comments
 (0)