Lines Matching defs:limit
1144 "setlimit($self, category, limit, /)\n"
1150 " The limit category to be set.\n"
1151 " limit\n"
1152 " The new limit. If the new limit is a negative number, the limit is\n"
1155 "Attempts to increase a limit above its hard upper bound are silently truncated\n"
1156 "to the hard upper bound. Regardless of whether or not the limit was changed,\n"
1157 "the prior value of the limit is returned.");
1163 setlimit_impl(pysqlite_Connection *self, int category, int limit);
1170 int limit;
1179 limit = _PyLong_AsInt(args[1]);
1180 if (limit == -1 && PyErr_Occurred()) {
1183 return_value = setlimit_impl(self, category, limit);
1196 " The limit category to be queried.");