Commit ea271f2d authored by Andrew M. Kuchling's avatar Andrew M. Kuchling

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

parent 1263bd8b
......@@ -434,7 +434,7 @@ static PyObject *
dbmopen(PyObject *self, PyObject *args)
{
char *name;
char *flags = "r ";
char *flags = "r";
int iflags;
int mode = 0666;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment