*args for pooled cursor method

Issue #221 resolved
Former user created an issue

change to:

def cursor(self, *args, **kwargs):
    return CursorFairy(self, self.connection.cursor(*args, **kwargs))

(psycopg2 allows a cursor_factory argument; conceivably other drivers have extensions too)

Comments (1)

  1. Log in to comment