mirror of
https://github.com/python/cpython.git
synced 2025-10-22 06:32:43 +00:00
fix pow() core dump
This commit is contained in:
parent
bb3c5f7406
commit
030ae17582
1 changed files with 1 additions and 1 deletions
|
@ -1299,7 +1299,7 @@ static struct methodlist builtin_methods[] = {
|
||||||
{"oct", builtin_oct},
|
{"oct", builtin_oct},
|
||||||
{"open", builtin_open},
|
{"open", builtin_open},
|
||||||
{"ord", builtin_ord},
|
{"ord", builtin_ord},
|
||||||
{"pow", builtin_pow},
|
{"pow", builtin_pow, 1},
|
||||||
{"range", builtin_range},
|
{"range", builtin_range},
|
||||||
{"raw_input", builtin_raw_input},
|
{"raw_input", builtin_raw_input},
|
||||||
{"reduce", builtin_reduce},
|
{"reduce", builtin_reduce},
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue