Lines Matching defs:mode
214 "When the database has been opened in fast mode, this method forces\n"
234 "open($module, filename, flags=\'r\', mode=0o666, /)\n"
249 "opens the database in fast mode; altered data will not automatically\n"
257 "The optional mode argument is the Unix mode of the file, used only\n"
265 int mode);
273 int mode = 438;
298 mode = _PyLong_AsInt(args[2]);
299 if (mode == -1 && PyErr_Occurred()) {
303 return_value = dbmopen_impl(module, filename, flags, mode);