> As an immutable type, tuple makes use of __new__.
>
> class MyTuple(tuple):
>      def __new__(cls, *args):
>          return tuple.__new__(cls, args)
>
> should work.
>
> Georg

strange.  not very consistent.

-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to