|
| 1 | +# SOME DESCRIPTIVE TITLE. |
| 2 | +# Copyright (C) 2001 Python Software Foundation |
| 3 | +# This file is distributed under the same license as the Python package. |
| 4 | +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. |
| 5 | +# |
| 6 | +#, fuzzy |
| 7 | +msgid "" |
| 8 | +msgstr "" |
| 9 | +"Project-Id-Version: Python 3.14\n" |
| 10 | +"Report-Msgid-Bugs-To: \n" |
| 11 | +"POT-Creation-Date: 2025-05-09 14:19+0000\n" |
| 12 | +"PO-Revision-Date: 2024-02-23 14:15+0000\n" |
| 13 | +"Language-Team: Indonesian (https://app.transifex.com/python-doc/teams/5390/id/)\n" |
| 14 | +"MIME-Version: 1.0\n" |
| 15 | +"Content-Type: text/plain; charset=UTF-8\n" |
| 16 | +"Content-Transfer-Encoding: 8bit\n" |
| 17 | +"Language: id\n" |
| 18 | +"Plural-Forms: nplurals=1; plural=0;\n" |
| 19 | + |
| 20 | +#: ../../c-api/hash.rst:4 |
| 21 | +msgid "PyHash API" |
| 22 | +msgstr "" |
| 23 | + |
| 24 | +#: ../../c-api/hash.rst:6 |
| 25 | +msgid "" |
| 26 | +"See also the :c:member:`PyTypeObject.tp_hash` member and :ref:`numeric-" |
| 27 | +"hash`." |
| 28 | +msgstr "" |
| 29 | + |
| 30 | +#: ../../c-api/hash.rst:10 |
| 31 | +msgid "Hash value type: signed integer." |
| 32 | +msgstr "" |
| 33 | + |
| 34 | +#: ../../c-api/hash.rst:16 |
| 35 | +msgid "Hash value type: unsigned integer." |
| 36 | +msgstr "" |
| 37 | + |
| 38 | +#: ../../c-api/hash.rst:22 |
| 39 | +msgid "" |
| 40 | +"The `Mersenne prime <https://en.wikipedia.org/wiki/Mersenne_prime>`_ ``P = " |
| 41 | +"2**n -1``, used for numeric hash scheme." |
| 42 | +msgstr "" |
| 43 | + |
| 44 | +#: ../../c-api/hash.rst:28 |
| 45 | +msgid "The exponent ``n`` of ``P`` in :c:macro:`PyHASH_MODULUS`." |
| 46 | +msgstr "" |
| 47 | + |
| 48 | +#: ../../c-api/hash.rst:34 |
| 49 | +msgid "Prime multiplier used in string and various other hashes." |
| 50 | +msgstr "" |
| 51 | + |
| 52 | +#: ../../c-api/hash.rst:40 |
| 53 | +msgid "The hash value returned for a positive infinity." |
| 54 | +msgstr "" |
| 55 | + |
| 56 | +#: ../../c-api/hash.rst:46 |
| 57 | +msgid "The multiplier used for the imaginary part of a complex number." |
| 58 | +msgstr "" |
| 59 | + |
| 60 | +#: ../../c-api/hash.rst:52 |
| 61 | +msgid "Hash function definition used by :c:func:`PyHash_GetFuncDef`." |
| 62 | +msgstr "" |
| 63 | + |
| 64 | +#: ../../c-api/hash.rst:60 |
| 65 | +msgid "Hash function name (UTF-8 encoded string)." |
| 66 | +msgstr "" |
| 67 | + |
| 68 | +#: ../../c-api/hash.rst:64 |
| 69 | +msgid "Internal size of the hash value in bits." |
| 70 | +msgstr "" |
| 71 | + |
| 72 | +#: ../../c-api/hash.rst:68 |
| 73 | +msgid "Size of seed input in bits." |
| 74 | +msgstr "" |
| 75 | + |
| 76 | +#: ../../c-api/hash.rst:75 |
| 77 | +msgid "Get the hash function definition." |
| 78 | +msgstr "" |
| 79 | + |
| 80 | +#: ../../c-api/hash.rst:78 |
| 81 | +msgid ":pep:`456` \"Secure and interchangeable hash algorithm\"." |
| 82 | +msgstr "" |
| 83 | + |
| 84 | +#: ../../c-api/hash.rst:85 |
| 85 | +msgid "" |
| 86 | +"Hash a pointer value: process the pointer value as an integer (cast it to " |
| 87 | +"``uintptr_t`` internally). The pointer is not dereferenced." |
| 88 | +msgstr "" |
| 89 | + |
| 90 | +#: ../../c-api/hash.rst:88 |
| 91 | +msgid "The function cannot fail: it cannot return ``-1``." |
| 92 | +msgstr "" |
| 93 | + |
| 94 | +#: ../../c-api/hash.rst:95 |
| 95 | +msgid "" |
| 96 | +"Compute and return the hash value of a buffer of *len* bytes starting at " |
| 97 | +"address *ptr*. The hash is guaranteed to match that of :class:`bytes`, " |
| 98 | +":class:`memoryview`, and other built-in objects that implement the " |
| 99 | +":ref:`buffer protocol <bufferobjects>`." |
| 100 | +msgstr "" |
| 101 | + |
| 102 | +#: ../../c-api/hash.rst:100 |
| 103 | +msgid "" |
| 104 | +"Use this function to implement hashing for immutable objects whose " |
| 105 | +":c:member:`~PyTypeObject.tp_richcompare` function compares to another " |
| 106 | +"object's buffer." |
| 107 | +msgstr "" |
| 108 | + |
| 109 | +#: ../../c-api/hash.rst:104 |
| 110 | +msgid "*len* must be greater than or equal to ``0``." |
| 111 | +msgstr "" |
| 112 | + |
| 113 | +#: ../../c-api/hash.rst:106 |
| 114 | +msgid "This function always succeeds." |
| 115 | +msgstr "" |
| 116 | + |
| 117 | +#: ../../c-api/hash.rst:113 |
| 118 | +msgid "" |
| 119 | +"Generic hashing function that is meant to be put into a type object's " |
| 120 | +"``tp_hash`` slot. Its result only depends on the object's identity." |
| 121 | +msgstr "" |
| 122 | + |
| 123 | +#: ../../c-api/hash.rst:118 |
| 124 | +msgid "In CPython, it is equivalent to :c:func:`Py_HashPointer`." |
| 125 | +msgstr "" |
0 commit comments