Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2022-07-03 | Finalize the release.0.63.0 | Jussi Pakkanen | 1 | -12/+0 | |
2022-05-09 | python module: default extensions to hidden symbol visibility | Eli Schwartz | 1 | -0/+12 | |
python compiled extensions should never need to expose any symbol other than PyInit_* which is declared with default visibility via PyMODINIT_FUNC on supported compilers. Thus, a reasonably sane default is to mark any other symbols as hidden, while still respecting any manually specified visibility. Gate this on the version of python itself, as not all versions decorate PyMODINIT_FUNC properly. |