You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hide symbols in compiled extension where possible.
Note that using `__attribute__((visibility("default")))` on individual
functions is the recommended way to expose things (e.g., for module
_init), but the way `PyMODINIT_FUNC` is defined does not allow that to
be used. Instead, use `#pragma`s to toggle the visibility setting.
0 commit comments