Thanks to all who responded, it is a big help.
Tim, the 'crazy-other-result format' is the
result returned by the database, nothing
I can do about that :)

Thanks again
George

-----Original Message----- From: Chris Angelico Sent: Thursday, February 18, 2016 10:45 AM Cc: python-list@python.org Subject: Re: Question on keyword arguments
On Fri, Feb 19, 2016 at 2:39 AM, Dan Strohl <d.str...@f5.com> wrote:
So, define a return object like:

from collections import UserList
class TestResponse(UserList):
    def __str__(self):
        return '\0xfe%s' % '\0xfe'.join(self.data)

...and return that object.

Out of interest, why UserList rather than simply subclassing list?

ChrisA
--
https://mail.python.org/mailman/listinfo/python-list
--
https://mail.python.org/mailman/listinfo/python-list

Reply via email to