|
1 | 1 | // This file was auto-generated by `.github/workflows/update-doc-db.yml`. |
2 | | -// CPython version: 3.14.4 |
| 2 | +// CPython version: 3.14.5 |
3 | 3 | // spell-checker: disable |
4 | 4 |
|
5 | 5 | pub static DB: phf::Map<&'static str, &'static str> = phf::phf_map! { |
@@ -8382,7 +8382,7 @@ pub static DB: phf::Map<&'static str, &'static str> = phf::phf_map! { |
8382 | 8382 | "_string" => "string helper module", |
8383 | 8383 | "_string.formatter_field_name_split" => "split the argument as a field name", |
8384 | 8384 | "_string.formatter_parser" => "parse the argument as a format string", |
8385 | | - "_struct" => "Functions to convert between Python values and C structs.\nPython bytes objects are used to hold the data representing the C struct\nand also as format strings (explained below) to describe the layout of data\nin the C struct.\n\nThe optional first format char indicates byte order, size and alignment:\n @: native order, size & alignment (default)\n =: native order, std. size & alignment\n <: little-endian, std. size & alignment\n >: big-endian, std. size & alignment\n !: same as >\n\nThe remaining chars indicate types of args and must match exactly;\nthese can be preceded by a decimal repeat count:\n x: pad byte (no data); c:char; b:signed byte; B:unsigned byte;\n ?:_Bool; h:short; H:unsigned short; i:int; I:unsigned int;\n l:long; L:unsigned long; f:float; d:double; e:half-float.\n F:float complex; D:double complex.\nSpecial cases (preceding decimal count indicates length):\n s:string (array of char); p: pascal string (with count byte).\nSpecial cases (only available in native format):\n n:ssize_t; N:size_t;\n P:an integer type that is wide enough to hold a pointer.\nSpecial case (not in native mode unless 'long long' in platform C):\n q:long long; Q:unsigned long long\nWhitespace between formats is ignored.\n\nThe variable struct.error is an exception raised on errors.", |
| 8385 | + "_struct" => "Functions to convert between Python values and C structs.\nPython bytes objects are used to hold the data representing the C struct.\nThe format string (explained below) describes the layout of data\nin the C struct.\n\nThe optional first format char indicates byte order, size and alignment:\n @: native order, size & alignment (default)\n =: native order, std. size & alignment\n <: little-endian, std. size & alignment\n >: big-endian, std. size & alignment\n !: same as >\n\nThe remaining characters indicate types of args and must match exactly;\nthese can be preceded by a decimal repeat count:\n x: pad byte (no data); c: char; b: signed byte; B: unsigned byte;\n ?: _Bool; h: short; H: unsigned short; i: int; I: unsigned int;\n l: long; L: unsigned long; q: long long; Q: unsigned long long;\n f: float; d: double; e: half-float;\n F: float complex; D: double complex.\nSpecial cases (preceding decimal count indicates length):\n s: byte string (array of char); p: Pascal string (with count byte).\nSpecial cases (only available in native format):\n n: ssize_t; N: size_t;\n P: an integer type that is wide enough to hold a pointer.\nWhitespace between formats is ignored.\n\nThe variable struct.error is an exception raised on errors.", |
8386 | 8386 | "_struct.Struct" => "Struct(fmt) --> compiled struct object", |
8387 | 8387 | "_struct.Struct.__delattr__" => "Implement delattr(self, name).", |
8388 | 8388 | "_struct.Struct.__eq__" => "Return self==value.", |
@@ -12573,7 +12573,7 @@ pub static DB: phf::Map<&'static str, &'static str> = phf::phf_map! { |
12573 | 12573 | "builtins.getset_descriptor.__subclasshook__" => "Abstract classes can override this to customize issubclass().\n\nThis is invoked early on by abc.ABCMeta.__subclasscheck__().\nIt should return True, False or NotImplemented. If it returns\nNotImplemented, the normal algorithm is used. Otherwise, it\noverrides the normal algorithm (and the outcome is cached).", |
12574 | 12574 | "builtins.globals" => "Return the dictionary containing the current scope's global variables.\n\nNOTE: Updates to this dictionary *will* affect name lookups in the current\nglobal scope and vice-versa.", |
12575 | 12575 | "builtins.hasattr" => "Return whether the object has an attribute with the given name.\n\nThis is done by calling getattr(obj, name) and catching AttributeError.", |
12576 | | - "builtins.hash" => "Return the hash value for the given object.\n\nTwo objects that compare equal must also have the same hash value, but the\nreverse is not necessarily true.", |
| 12576 | + "builtins.hash" => "Return the integer hash value for the given object.\n\nTwo objects that compare equal must also have the same hash value, but\nthe reverse is not necessarily true. Hash values may differ between\nPython processes. Not all objects are hashable; calling hash() on an\nunhashable object raises TypeError.", |
12577 | 12577 | "builtins.hex" => "Return the hexadecimal representation of an integer.\n\n >>> hex(12648430)\n '0xc0ffee'", |
12578 | 12578 | "builtins.id" => "Return the identity of an object.\n\nThis is guaranteed to be unique among simultaneously existing objects.\n(CPython uses the object's memory address.)", |
12579 | 12579 | "builtins.input" => "Read a string from standard input. The trailing newline is stripped.\n\nThe prompt string, if given, is printed to standard output without a\ntrailing newline before reading input.\n\nIf the user hits EOF (*nix: Ctrl-D, Windows: Ctrl-Z+Return), raise EOFError.\nOn *nix systems, readline is used if available.", |
|
0 commit comments