bpo-36763: Implement PyWideStringList_Insert() of PEP 587 (GH-15423)

This commit is contained in:
Victor Stinner 2019-08-23 16:57:54 +01:00 committed by GitHub
parent 8e76c45622
commit 3842f2997f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 51 additions and 13 deletions

View file

@ -37,6 +37,9 @@ typedef struct {
PyAPI_FUNC(PyStatus) PyWideStringList_Append(PyWideStringList *list,
const wchar_t *item);
PyAPI_FUNC(PyStatus) PyWideStringList_Insert(PyWideStringList *list,
Py_ssize_t index,
const wchar_t *item);
/* --- PyPreConfig ----------------------------------------------- */