|
| 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: 2025-05-08 06:04+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 | +#: ../../deprecations/c-api-pending-removal-in-3.18.rst:2 |
| 21 | +msgid "Pending removal in Python 3.18" |
| 22 | +msgstr "" |
| 23 | + |
| 24 | +#: ../../deprecations/c-api-pending-removal-in-3.18.rst:4 |
| 25 | +msgid "Deprecated private functions (:gh:`128863`):" |
| 26 | +msgstr "" |
| 27 | + |
| 28 | +#: ../../deprecations/c-api-pending-removal-in-3.18.rst:6 |
| 29 | +msgid ":c:func:`!_PyBytes_Join`: use :c:func:`PyBytes_Join`." |
| 30 | +msgstr "" |
| 31 | + |
| 32 | +#: ../../deprecations/c-api-pending-removal-in-3.18.rst:7 |
| 33 | +msgid "" |
| 34 | +":c:func:`!_PyDict_GetItemStringWithError`: use " |
| 35 | +":c:func:`PyDict_GetItemStringRef`." |
| 36 | +msgstr "" |
| 37 | + |
| 38 | +#: ../../deprecations/c-api-pending-removal-in-3.18.rst:8 |
| 39 | +msgid ":c:func:`!_PyDict_Pop()`: :c:func:`PyDict_Pop`." |
| 40 | +msgstr "" |
| 41 | + |
| 42 | +#: ../../deprecations/c-api-pending-removal-in-3.18.rst:9 |
| 43 | +msgid ":c:func:`!_PyLong_Sign()`: use :c:func:`PyLong_GetSign`." |
| 44 | +msgstr "" |
| 45 | + |
| 46 | +#: ../../deprecations/c-api-pending-removal-in-3.18.rst:10 |
| 47 | +msgid "" |
| 48 | +":c:func:`!_PyLong_FromDigits` and :c:func:`!_PyLong_New`: use " |
| 49 | +":c:func:`PyLongWriter_Create`." |
| 50 | +msgstr "" |
| 51 | + |
| 52 | +#: ../../deprecations/c-api-pending-removal-in-3.18.rst:12 |
| 53 | +msgid "" |
| 54 | +":c:func:`!_PyThreadState_UncheckedGet`: use " |
| 55 | +":c:func:`PyThreadState_GetUnchecked`." |
| 56 | +msgstr "" |
| 57 | + |
| 58 | +#: ../../deprecations/c-api-pending-removal-in-3.18.rst:13 |
| 59 | +msgid ":c:func:`!_PyUnicode_AsString`: use :c:func:`PyUnicode_AsUTF8`." |
| 60 | +msgstr "" |
| 61 | + |
| 62 | +#: ../../deprecations/c-api-pending-removal-in-3.18.rst:14 |
| 63 | +msgid "" |
| 64 | +":c:func:`!_PyUnicodeWriter_Init`: replace ``_PyUnicodeWriter_Init(&writer)``" |
| 65 | +" with :c:func:`writer = PyUnicodeWriter_Create(0) <PyUnicodeWriter_Create>`." |
| 66 | +msgstr "" |
| 67 | + |
| 68 | +#: ../../deprecations/c-api-pending-removal-in-3.18.rst:17 |
| 69 | +msgid "" |
| 70 | +":c:func:`!_PyUnicodeWriter_Finish`: replace " |
| 71 | +"``_PyUnicodeWriter_Finish(&writer)`` with " |
| 72 | +":c:func:`PyUnicodeWriter_Finish(writer) <PyUnicodeWriter_Finish>`." |
| 73 | +msgstr "" |
| 74 | + |
| 75 | +#: ../../deprecations/c-api-pending-removal-in-3.18.rst:20 |
| 76 | +msgid "" |
| 77 | +":c:func:`!_PyUnicodeWriter_Dealloc`: replace " |
| 78 | +"``_PyUnicodeWriter_Dealloc(&writer)`` with " |
| 79 | +":c:func:`PyUnicodeWriter_Discard(writer) <PyUnicodeWriter_Discard>`." |
| 80 | +msgstr "" |
| 81 | + |
| 82 | +#: ../../deprecations/c-api-pending-removal-in-3.18.rst:23 |
| 83 | +msgid "" |
| 84 | +":c:func:`!_PyUnicodeWriter_WriteChar`: replace " |
| 85 | +"``_PyUnicodeWriter_WriteChar(&writer, ch)`` with " |
| 86 | +":c:func:`PyUnicodeWriter_WriteChar(writer, ch) <PyUnicodeWriter_WriteChar>`." |
| 87 | +msgstr "" |
| 88 | + |
| 89 | +#: ../../deprecations/c-api-pending-removal-in-3.18.rst:26 |
| 90 | +msgid "" |
| 91 | +":c:func:`!_PyUnicodeWriter_WriteStr`: replace " |
| 92 | +"``_PyUnicodeWriter_WriteStr(&writer, str)`` with " |
| 93 | +":c:func:`PyUnicodeWriter_WriteStr(writer, str) <PyUnicodeWriter_WriteStr>`." |
| 94 | +msgstr "" |
| 95 | + |
| 96 | +#: ../../deprecations/c-api-pending-removal-in-3.18.rst:29 |
| 97 | +msgid "" |
| 98 | +":c:func:`!_PyUnicodeWriter_WriteSubstring`: replace " |
| 99 | +"``_PyUnicodeWriter_WriteSubstring(&writer, str, start, end)`` with " |
| 100 | +":c:func:`PyUnicodeWriter_WriteSubstring(writer, str, start, end) " |
| 101 | +"<PyUnicodeWriter_WriteSubstring>`." |
| 102 | +msgstr "" |
| 103 | + |
| 104 | +#: ../../deprecations/c-api-pending-removal-in-3.18.rst:32 |
| 105 | +msgid "" |
| 106 | +":c:func:`!_PyUnicodeWriter_WriteASCIIString`: replace " |
| 107 | +"``_PyUnicodeWriter_WriteASCIIString(&writer, str)`` with " |
| 108 | +":c:func:`PyUnicodeWriter_WriteUTF8(writer, str) " |
| 109 | +"<PyUnicodeWriter_WriteUTF8>`." |
| 110 | +msgstr "" |
| 111 | + |
| 112 | +#: ../../deprecations/c-api-pending-removal-in-3.18.rst:35 |
| 113 | +msgid "" |
| 114 | +":c:func:`!_PyUnicodeWriter_WriteLatin1String`: replace " |
| 115 | +"``_PyUnicodeWriter_WriteLatin1String(&writer, str)`` with " |
| 116 | +":c:func:`PyUnicodeWriter_WriteUTF8(writer, str) " |
| 117 | +"<PyUnicodeWriter_WriteUTF8>`." |
| 118 | +msgstr "" |
| 119 | + |
| 120 | +#: ../../deprecations/c-api-pending-removal-in-3.18.rst:38 |
| 121 | +msgid ":c:func:`!_PyUnicodeWriter_Prepare`: (no replacement)." |
| 122 | +msgstr "" |
| 123 | + |
| 124 | +#: ../../deprecations/c-api-pending-removal-in-3.18.rst:39 |
| 125 | +msgid ":c:func:`!_PyUnicodeWriter_PrepareKind`: (no replacement)." |
| 126 | +msgstr "" |
| 127 | + |
| 128 | +#: ../../deprecations/c-api-pending-removal-in-3.18.rst:40 |
| 129 | +msgid ":c:func:`!_Py_HashPointer`: use :c:func:`Py_HashPointer`." |
| 130 | +msgstr "" |
| 131 | + |
| 132 | +#: ../../deprecations/c-api-pending-removal-in-3.18.rst:41 |
| 133 | +msgid ":c:func:`!_Py_fopen_obj`: use :c:func:`Py_fopen`." |
| 134 | +msgstr "" |
| 135 | + |
| 136 | +#: ../../deprecations/c-api-pending-removal-in-3.18.rst:43 |
| 137 | +msgid "" |
| 138 | +"The `pythoncapi-compat project <https://github.com/python/pythoncapi-" |
| 139 | +"compat/>`__ can be used to get these new public functions on Python 3.13 and" |
| 140 | +" older." |
| 141 | +msgstr "" |
0 commit comments