Duncan Booth wrote:
> Wildemar Wildenburger <[EMAIL PROTECTED]> wrote:
> 
>> maybe something like this could help:
>>
>> def tupleize(non_tuple):
>>      try:
>>          return tuple(tupleize(thing) for thing in non_tuple)
>>      except TypeError:
>>          # non_tuple is not iterable
>>          return non_tuple
>>
> 
> Just don't try passing that a string or anything containing a string.
> 
Outch! Right you are.

We'll that's the genius of paid updates for you.

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

Reply via email to