90
75
"""Adapt any iterable to an SQL quotable object."""
99
81
# this is the important line: note how every object in the
100
82
# list is adapted and then how getquoted() is called on it
101
83
qobjs = [str(_A(o).getquoted()) for o in self._seq]
103
85
return '(' + ', '.join(qobjs) + ')'