diff options
| author | Mattias Andrée <maandree@operamail.com> | 2015-04-08 00:05:42 +0200 |
|---|---|---|
| committer | Mattias Andrée <maandree@operamail.com> | 2015-04-08 00:05:42 +0200 |
| commit | dbd49a6ab7caef7bece9cb39dd9dc66c40f2e86e (patch) | |
| tree | ae3a6bb1eecca10516c71b7093a38529c2ca23d3 | |
| parent | update precompied pdf (diff) | |
| download | join-python-dbd49a6ab7caef7bece9cb39dd9dc66c40f2e86e.tar.gz join-python-dbd49a6ab7caef7bece9cb39dd9dc66c40f2e86e.tar.bz2 join-python-dbd49a6ab7caef7bece9cb39dd9dc66c40f2e86e.tar.xz | |
m info1.1
Signed-off-by: Mattias Andrée <maandree@operamail.com>
| -rw-r--r-- | info/join-python.texinfo | 8 | ||||
| -rw-r--r-- | join-python.pdf | bin | 158757 -> 158752 bytes |
2 files changed, 4 insertions, 4 deletions
diff --git a/info/join-python.texinfo b/info/join-python.texinfo index 8d27320..9199175 100644 --- a/info/join-python.texinfo +++ b/info/join-python.texinfo @@ -167,7 +167,7 @@ function returned. >>> return value ** 2 >>> >>> def f(value): ->>> ((frag_value,), _kwargs, rc) = join(frag) +>>> (frag_value,), _kwargs, rc = join(frag) >>> return rc + frag_value + value >>> >>> frag(2) @@ -196,7 +196,7 @@ for the @code{join} call. >>> return value ** 3 >>> >>> def f(value): ->>> ((_args1, _kwargs1, rc1), (_args2, _kwargs2, rc2)) = join(f1, f2) +>>> (_args1, _kwargs1, rc1), (_args2, _kwargs2, rc2) = join(f1, f2) >>> return value + rc1 + rc2 >>> >>> f1(2) @@ -249,11 +249,11 @@ that fragment group. >>> pass >>> >>> def ordered(): ->>> (case, (_jargs, _jkwargs, _jrc)) = ordered_join((f1,), (f2,), (f3,)) +>>> case, (_args, _kwargs, _rc) = ordered_join((f1,), (f2,), (f3,)) >>> return case >>> >>> def unordered(): ->>> (case, (_jargs, _jkwargs, _jrc)) = unordered_join((f1,), (f2,), (f3,)) +>>> case, (_args, _kwargs, _rc) = unordered_join((f1,), (f2,), (f3,)) >>> return case >>> >>> def switch(f): diff --git a/join-python.pdf b/join-python.pdf Binary files differindex 4d53a1d..0083736 100644 --- a/join-python.pdf +++ b/join-python.pdf |
