Lines Matching defs:value
300 " -1 (the default value) means replace all occurrences.\n"
376 " None (the default value) means split on ASCII whitespace characters\n"
380 " -1 (the default value) means no limit.");
473 " None (the default value) means split on ASCII whitespace characters\n"
477 " -1 (the default value) means no limit.\n"
556 " The index where the value is to be inserted.\n"
647 " -1 (the default value) means remove the last item.\n"
689 "remove($self, value, /)\n"
692 "Remove the first occurrence of a value in the bytearray.\n"
694 " value\n"
695 " The value to remove.");
701 bytearray_remove_impl(PyByteArrayObject *self, int value);
707 int value;
709 if (!_getbytevalue(arg, &value)) {
712 return_value = bytearray_remove_impl(self, value);
1002 ">>> value = bytearray([0xb9, 0x01, 0xef])\n"
1003 ">>> value.hex()\n"
1005 ">>> value.hex(\':\')\n"
1007 ">>> value.hex(\':\', 2)\n"
1009 ">>> value.hex(\':\', -2)\n"