[issue13299] namedtuple row factory for sqlite3
Zaur Shibzukhov added the comment: Instead of using cache, maybe better to use mutable default argument? For example: def make_row_factory(cls_factory, **kw): def row_factory(cursor, row, cls=[None]): rf = cls[0] if rf is None: fields = [col[0] for col in
[issue4230] "__getattr__" can't be a descriptor
zaur <[EMAIL PROTECTED]> added the comment: It's the issue for python 3.0 too ------ nosy: +zaur ___ Python tracker <[EMAIL PROTECTED]> <http://bugs.