On 2013-06-18 16:27, Mark Lawrence wrote:
> On 18/06/2013 15:56, Tim Chase wrote:
> >      name_index_map = dict(
> >        (info[0], i)
> >        for info, i in enumerate(cursor.description)
> 
> Looks like this should be :-
> for i, info in enumerate(cursor.description)

Doh, indeed, you're correct.  As forewarned though, it *was*
completely untested, so anything remotely approaching working code is
merely a tribute to how easy it is to write Python that actually runs.

:-)

-tkc


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

Reply via email to