This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author Maria Alguea
Recipients Juan Telleria2, Maria Alguea, gvanrossum, steven.daprano
Date 2019-09-14.06:42:34
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1568443354.71.0.45395543895.issue38052@roundup.psfhosted.org>
In-reply-to
Content
Will discuss it on the Mailing Lists. Thank you.

Yet is important it is important to understand this powerful concept, based on R's pipe:

https://magrittr.tidyverse.org

Eg:

MyObj = Class \
   .method1() %>%
   f_function1() \   # Obj is 1st argument
   .method2() %>%
   f_function2(param1 = "ABC", param2 = .)

And in the last function, the the previous object is saved named as a for "."
History
Date User Action Args
2019-09-14 06:42:34Maria Algueasetrecipients: + Maria Alguea, gvanrossum, steven.daprano, Juan Telleria2
2019-09-14 06:42:34Maria Algueasetmessageid: <1568443354.71.0.45395543895.issue38052@roundup.psfhosted.org>
2019-09-14 06:42:34Maria Alguealinkissue38052 messages
2019-09-14 06:42:34Maria Algueacreate