8000 gh-90928: Statically Initialize the Keywords Tuple in Clinic-Generated Code by ericsnowcurrently · Pull Request #95860 · python/cpython · GitHub
[go: up one dir, main page]

Skip to content

gh-90928: Statically Initialize the Keywords Tuple in Clinic-Generated Code #95860

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Fix parser_init().
  • Loading branch information
ericsnowcurrently committed Aug 10, 2022
commit 5eafa678b38aa2ede8e57968d0bb44755fa4e73c
28 changes: 18 additions & 10 deletions Python/getargs.c
6AFD
Original file line number Diff line number Diff line change
Expand Up @@ -1976,12 +1976,7 @@ new_kwtuple(const char * const *keywords, int total, int pos)
static int
parser_init(struct _PyArg_Parser *parser)
{
const char * const *keywords;
const char *fname, *custommsg;
int len, pos, min, max, owned;
PyObject *kwtuple;

keywords = parser->keywords;
const char * const *keywords = parser->keywords;
assert(keywords != NULL);

if (parser->initialized) {
Expand All @@ -1994,14 +1989,27 @@ parser_init(struct _PyArg_Parser *parser)
parser->min == 0 &&
parser->max == 0);

int len, pos;
if (scan_keywords(keywords, &len, &pos) < 0) {
return 0;
}
if (parser->format && parse_format(parser->format, len, pos,
&fname, &custommsg, &min, &max) < 0) {
return 0;

const char *fname, *custommsg = NULL;
int min = 0, max = 0;
if (parser->format) {
assert(parser->fname == NULL);
if (parse_format(parser->format, len, pos,
&fname, &custommsg, &min, &max) < 0) {
return 0;
}
}
kwtuple = parser->kwtuple;
else {
assert(parser->fname != NULL);
fname = parser->fname;
}

int owned;
PyObject *kwtuple = parser->kwtuple;
if (kwtuple == NULL) {
kwtuple = new_kwtuple(keywords, len, pos);
if (kwtuple == NULL) {
Expand Down
0