Maria Alguea <mariaalguearu...@gmail.com> added the comment:

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 "."

----------
nosy: +Maria Alguea

_______________________________________
Python tracker <rep...@bugs.python.org>
<https://bugs.python.org/issue38052>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to