~psycopg/psycopg/2.0.x

« back to all changes in this revision

Viewing changes to psycopg/connection_type.c

  • Committer: Federico Di Gregorio
  • Date: 2004-11-19 15:50:57 UTC
  • Revision ID: fog-f158b25706fb1159b0aa686499aa8f9df5b4e696
DictCursor fixes again.

Show diffs side-by-side

added added

removed removed

Lines of Context:
48
48
    char *name = NULL;
49
49
    PyObject *obj, *factory = NULL;
50
50
 
51
 
    static char *kwlist[] = {"name", "factory", NULL};
 
51
    static char *kwlist[] = {"name", "cursor_factory", NULL};
52
52
    
53
53
    if (!PyArg_ParseTupleAndKeywords(args, keywds, "|sO", kwlist,
54
54
                                     &name, &factory)) {