py-tree-sitter icon indicating copy to clipboard operation
py-tree-sitter copied to clipboard

binding/query.c: use PyErr_Format instead of _PyErr_FormatFromCause

Open arthurzam opened this issue 1 year ago • 4 comments

The _PyErr_FormatFromCause function is a private function, which was never documented. While it existed for a long time, it was removed in Python 3.13 https://github.com/python/cpython/issues/106320.

Use instead the public function PyErr_Format, which is also part of the stable API.

arthurzam avatar Aug 28 '24 17:08 arthurzam