[Bug #982806] The default argument for opening GDBM files is bogus. Patch #984672 by James Lamanna

This commit is contained in:
Andrew M. Kuchling 2004-07-07 14:19:09 +00:00
parent 1263bd8b6c
commit ea271f2d5e

View file

@ -434,7 +434,7 @@ static PyObject *
dbmopen(PyObject *self, PyObject *args)
{
char *name;
char *flags = "r ";
char *flags = "r";
int iflags;
int mode = 0666;