Add synonyms for argument unpacking, for text-search purposes

This commit is contained in:
Eli 2019-01-17 08:05:23 -05:00
parent a42e17a025
commit 3d2be62d4b

View File

@ -1609,6 +1609,9 @@ the given conditional is ``False``. The following shows the expansion of this ma
unpack-iterable, unpack-mapping
-------------------------------
(Also known as the splat operator, star operator, argument expansion, argument
explosion, argument gathering, and varargs, among others...)
``unpack-iterable`` and ``unpack-mapping`` allow an iterable or mapping
object (respectively) to provide positional or keywords arguments
(respectively) to a function.