Tim Chase wrote:
(snip)
>>>> class Foo(object):
> ... def __init__(self):
> ... for method in dir(self):
> ... if method == method.strip("_"):
if not method.startswith('_'):
--
bruno desthuilliers
python -c "print '@'.join(['.'.join([w[::-1] for w in p.split('.')]) for
p in '[EMAIL PROTECTED]'.split('@')])"
--
http://mail.python.org/mailman/listinfo/python-list
