mirror of
https://github.com/python/cpython.git
synced 2025-08-22 09:45:06 +00:00
Issue #18896: Python function can now have more than 255 parameters.
collections.namedtuple() now supports tuples with more than 255 elements.
This commit is contained in:
parent
14d8b9693b
commit
5bb8b9134b
10 changed files with 33 additions and 49 deletions
|
@ -1411,11 +1411,6 @@ ast_for_arguments(struct compiling *c, const node *n)
|
|||
if (!kwdefaults && nkwonlyargs)
|
||||
return NULL;
|
||||
|
||||
if (nposargs + nkwonlyargs > 255) {
|
||||
ast_error(c, n, "more than 255 arguments");
|
||||
return NULL;
|
||||
}
|
||||
|
||||
/* tfpdef: NAME [':' test]
|
||||
vfpdef: NAME
|
||||
*/
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue