Fix build for Python 3.13
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.