blob: a184a9c8a156114e670c0840df939e8d066daa45 [file] [edit]
/*
* This is a GNU "ld" version script.
*
* It is typically used to version symbols, but can also be used to set the
* exportability of symbols. We use it to limit global export of symbols to
* only those that are part of the Python ABI, excluding symbols in the
* peripheral statically-linked libraries (notably OpenSSL).
*/
{
global:
Py*;
*_Py*;
local:
*;
};