From c670bd961f99cf602a1295c0b3c2d4b0cc68a862 Mon Sep 17 00:00:00 2001 From: scls19fr Date: Mon, 8 Jun 2015 18:59:38 +0200 Subject: [PATCH] Update v0.16.2.txt Add arg3=3 to pipe example --- doc/source/whatsnew/v0.16.2.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/source/whatsnew/v0.16.2.txt b/doc/source/whatsnew/v0.16.2.txt index b5394ab817cdf..4041f9f059bca 100644 --- a/doc/source/whatsnew/v0.16.2.txt +++ b/doc/source/whatsnew/v0.16.2.txt @@ -45,7 +45,7 @@ This can be rewritten as (df.pipe(h) .pipe(g, arg1=1) - .pipe(f, arg2=2) + .pipe(f, arg2=2, arg3=3) ) Now both the code and the logic flow from top to bottom. Keyword arguments are next to