Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.lang.python > #36701
| From | Stefan Behnel <stefan_ml@behnel.de> |
|---|---|
| Subject | Re: proposal: Ellipsis in argument list |
| Date | 2013-01-12 15:08 +0100 |
| References | <CAHDqXQ_Rw9owJN1nNqCeT24TPQnMPdtnrnf19wDX2h8jyhteRg@mail.gmail.com> |
| Newsgroups | comp.lang.python |
| Message-ID | <mailman.446.1357999722.2939.python-list@python.org> (permalink) |
Szabolcs Blága, 12.01.2013 14:30: > I have an idea that the Ellipsis object could be used in function calls. > The "..." syntax should automagically turn into an Ellipsis positional > argument. > > def f(*args): > ext_args = [] > for i, a in enumerate(args): > if a is Ellipsis: > ext_args.extend([x for x in range(args[i-1]-1, args[i+1])]) > else: > ext_args.append(a) > return ext_args > > Calling it for the above example specifically: > > >>> f(34, ..., 43) > [34, 35, 36, 37, 38, 39, 40, 41, 42, 43] > > That might be useless or someone might say it is confusing, but I think it > would be relatively easy to implement and a nice little syntactic "sugar". Not sure what exactly you are proposing here, this works for me: Python 3.2.3 (default, Oct 19 2012, 19:53:16) [GCC 4.7.2] on linux2 Type "help", "copyright", "credits" or "license" for more information. >>> def f(*args): print(args) >>> f(34, ..., 43) (34, Ellipsis, 43) Stefan
Back to comp.lang.python | Previous | Next | Find similar | Unroll thread
Re: proposal: Ellipsis in argument list Stefan Behnel <stefan_ml@behnel.de> - 2013-01-12 15:08 +0100
csiph-web