msg142995 - (view) |
Author: Anders Kaseorg (andersk) * |
Date: 2011-08-26 02:42 |
This feels like an arbitrary restriction (obvious sequences have been replaced with ‘…’ to save space in this report): >>> zip([0], [1], [2], …, [1999]) File "", line 1 SyntaxError: more than 255 arguments especially when this works: >>> zip(*[[0], [1], [2], …, [1999]]) [(0, 1, 2, …, 1999)] Apparently that limit bites some people: https://docs.djangoproject.com/en/1.3/topics/http/urls/#module-django.conf.urls.defaults The bytecode format doesn’t support directly calling a function with more than 255 arguments. But, it should still be pretty easy to compile such function calls by desugaring f(arg0, …, arg999, k0=v0, …, k999=v999) into f(*(arg0, …, arg999), **{'k0': 'v0', …, 'k999': 'v999'}) |
|
|
msg142996 - (view) |
Author: Anders Kaseorg (andersk) * |
Date: 2011-08-26 02:56 |
I guess the desugaring is slightly more complicated in the case where the original function call already used *args or **kwargs: f(arg0, …, arg999, *args, k0=v0, …, k999=v999, **kwargs) becomes something like f(*((arg0, …, arg999) + args), **dict({'k0': 'v0', …, 'k999': 'v999'}, **kwargs)) |
|
|
msg142998 - (view) |
Author: Raymond Hettinger (rhettinger) *  |
Date: 2011-08-26 03:28 |
On python-dev a few month ago, Guido agreed with you that this is an arbitrary limitation that should be removed at some point. In particular, he worried that programmatically generated code would tend to run into this limitation. |
|
|
msg143002 - (view) |
Author: Martin v. Löwis (loewis) *  |
Date: 2011-08-26 07:42 |
The approach looks fine to me. Would you like to work on a patch? |
|
|
msg143440 - (view) |
Author: Andreas Stührk (Trundle) * |
Date: 2011-09-02 22:00 |
Attached is a patch that removes the limit and that allows passing an arbitrary number of positional and keyword arguments. Lacks tests for now. |
|
|
msg143451 - (view) |
Author: David Benjamin (davidben) |
Date: 2011-09-03 03:32 |
I don't think that patch works. Consider a dict subclass which has overridden update. Or perhaps a list subclass which has overridden addition. It would be quite poor if Python's behavior here w.r.t. which overrides are followed switched as you added more arguments. |
|
|
msg281655 - (view) |
Author: Serhiy Storchaka (serhiy.storchaka) *  |
Date: 2016-11-24 21:33 |
Since the bytecode no longer have a limitation for numbers of positional or keyword arguments. |
|
|
msg281688 - (view) |
Author: Serhiy Storchaka (serhiy.storchaka) *  |
Date: 2016-11-25 09:27 |
No longer changes to Python/compile.c are needed. Here is a patch against 3.7 that just removes the limit of the number of passed arguments in Python/ast.c and adds tests. But still there is a limitation on the number of function parameters. It is caused by using a bytes objects as co_cell2arg. |
|
|
msg281836 - (view) |
Author: Brett Cannon (brett.cannon) *  |
Date: 2016-11-27 21:32 |
Patch LGTM. |
|
|
msg281848 - (view) |
Author: Roundup Robot (python-dev)  |
Date: 2016-11-28 08:52 |
New changeset 5c1bb72c0f5d by Serhiy Storchaka in branch 'default': Issue #12844: More than 255 arguments can now be passed to a function. https://hg.python.org/cpython/rev/5c1bb72c0f5d |
|
|
msg281855 - (view) |
Author: Serhiy Storchaka (serhiy.storchaka) *  |
Date: 2016-11-28 10:25 |
Thanks Brett. See for supporting functions with more than 255 parameters. |
|
|