Hide some symbols from _xxsubinterpreters. (GH-8151)

This commit is contained in:
Benjamin Peterson 2018-07-06 23:28:35 -07:00 committed by GitHub
parent cb4bae72c9
commit 4629c0d531
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -1201,7 +1201,7 @@ done:
PyThread_release_lock(channels->mutex);
}
int64_t *
static int64_t *
_channels_list_all(_channels *channels, int64_t *count)
{
int64_t *cids = NULL;
@ -1545,7 +1545,7 @@ channelid_str(PyObject *self)
return PyUnicode_FromFormat("%" PRId64 "", cid->id);
}
PyObject *
static PyObject *
channelid_int(PyObject *self)
{
channelid *cid = (channelid *)self;