On Sep 20, 10:38 am, Peng Yu <pengyu...@gmail.com> wrote:
> Hi,
>
> I have the following code. I want to change the function body of
> __repr__ to something like
>
>     return 'In %s::%s' % ($class_name, $function_name)
>
> I'm wondering what I should write for $class_name and $function_name in 
> python.
>
> Regards,
> Peng
>
> class A:
>   def __init__(self):
>     pass
>
>   def __repr__(self):
>     return 'In A::__repr__'
>
> a = A()
> print a

well thats easy ;-)

return 'A, __repr__'

was that too easy?
-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to