On Mon, Oct 25, 2010 at 9:21 AM, chad <cdal...@gmail.com> wrote:
> I just saw this technique used in python script that was/is used to
> automatically log them in myspace.com. Hence the question.

Function/Method Chaining is probably used a lot in Python itself:

>>> x = 4
>>> x.__add__(1).__sub__(3)
2

The implementation of many common operators return self (the object
you're working with).

cheers
James

-- 
-- James Mills
--
-- "Problems are solved by method"
-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to