Commit e4c8f1c1 authored by gabrieldemarmiesse's avatar gabrieldemarmiesse

Moved two examples to the examples directory.

parent 084a25f5
def f(a, b, *args, c, d = 42, e, **kwds):
# ...
return "hello world"
# We cannot call f with less verbosity than this.
foo = f(4, "bar", c=68, e=1.0)
def g(a, b, *, c, d):
# ...
return 'hello world'
# We cannot call g with less verbosity than this.
foo = g(4.0, "something", c=68, d="other")
...@@ -355,13 +355,9 @@ Keyword-only Arguments ...@@ -355,13 +355,9 @@ Keyword-only Arguments
---------------------- ----------------------
As in Python 3, ``def`` functions can have keyword-only arguments As in Python 3, ``def`` functions can have keyword-only arguments
listed after a ``"*"`` parameter and before a ``"**"`` parameter if any:: listed after a ``"*"`` parameter and before a ``"**"`` parameter if any:
def f(a, b, *args, c, d = 42, e, **kwds): .. literalinclude:: ../../examples/userguide/language_basics/kwargs_1.pyx
...
# We cannot call f with less verbosity than this.
foo = f(4, "bar", c=68, e=1.0)
As shown above, the ``c``, ``d`` and ``e`` arguments can not be As shown above, the ``c``, ``d`` and ``e`` arguments can not be
passed as positional arguments and must be passed as keyword arguments. passed as positional arguments and must be passed as keyword arguments.
...@@ -369,16 +365,12 @@ Furthermore, ``c`` and ``e`` are **required** keyword arguments ...@@ -369,16 +365,12 @@ Furthermore, ``c`` and ``e`` are **required** keyword arguments
since they do not have a default value. since they do not have a default value.
A single ``"*"`` without argument name can be used to A single ``"*"`` without argument name can be used to
terminate the list of positional arguments:: terminate the list of positional arguments:
def g(a, b, *, c, d):
...
# We cannot call g with less verbosity than this. .. literalinclude:: ../../examples/userguide/language_basics/kwargs_2.pyx
foo = g(4.0, "something", c=68, d="other")
Shown above, the signature takes exactly two positional Shown above, the signature takes exactly two positional
parameters and has two required keyword parameters parameters and has two required keyword parameters.
Function Pointers Function Pointers
----------------- -----------------
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment