Skip to content

Fix build for Python 3.13

Leo P. Singer requested to merge leo-singer/ligo-segments:PyList_Extend into master

Use PyList_Extend for Python >= 3.13, and provide replacement using _PyList_Extend for Python < 3.13. In Python 3.13, the function _PyList_Extend was removed and the public API method PyList_Extend was added in its place.

Fixes #21.

Merge request reports