mirror of
https://github.com/python/cpython.git
synced 2025-12-08 06:10:17 +00:00
gh-137210: Add a struct, slot & function for checking an extension's ABI (GH-137212)
Co-authored-by: Steve Dower <steve.dower@microsoft.com>
This commit is contained in:
parent
c1a9c23195
commit
0c74fc8af0
24 changed files with 654 additions and 8 deletions
|
|
@ -82,6 +82,12 @@ extern int _PyUnicode_FormatAdvancedWriter(
|
|||
Py_ssize_t start,
|
||||
Py_ssize_t end);
|
||||
|
||||
/* PyUnicodeWriter_Format, with va_list instead of `...` */
|
||||
extern int _PyUnicodeWriter_FormatV(
|
||||
PyUnicodeWriter *writer,
|
||||
const char *format,
|
||||
va_list vargs);
|
||||
|
||||
/* --- UTF-7 Codecs ------------------------------------------------------- */
|
||||
|
||||
extern PyObject* _PyUnicode_EncodeUTF7(
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue