gh-96002: Add functional test for Argument Clinic (#96178)

Co-authored-by: Kumar Aditya <59607654+kumaraditya303@users.noreply.github.com>
Co-authored-by: Erlend E. Aasland <erlend.aasland@protonmail.com>
This commit is contained in:
colorfulappl 2022-11-21 22:08:45 +08:00 committed by GitHub
parent 653e563d80
commit c450c8c9ed
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
12 changed files with 3695 additions and 1 deletions

View file

@ -480,6 +480,8 @@ _PyUnicode_InitStaticStrings(void) {
PyUnicode_InternInPlace(&string);
string = &_Py_ID(bytes_per_sep);
PyUnicode_InternInPlace(&string);
string = &_Py_ID(c);
PyUnicode_InternInPlace(&string);
string = &_Py_ID(c_call);
PyUnicode_InternInPlace(&string);
string = &_Py_ID(c_exception);
@ -578,6 +580,8 @@ _PyUnicode_InitStaticStrings(void) {
PyUnicode_InternInPlace(&string);
string = &_Py_ID(cwd);
PyUnicode_InternInPlace(&string);
string = &_Py_ID(d);
PyUnicode_InternInPlace(&string);
string = &_Py_ID(data);
PyUnicode_InternInPlace(&string);
string = &_Py_ID(database);
@ -632,6 +636,8 @@ _PyUnicode_InitStaticStrings(void) {
PyUnicode_InternInPlace(&string);
string = &_Py_ID(duration);
PyUnicode_InternInPlace(&string);
string = &_Py_ID(e);
PyUnicode_InternInPlace(&string);
string = &_Py_ID(effective_ids);
PyUnicode_InternInPlace(&string);
string = &_Py_ID(element_factory);