99#, fuzzy
1010msgid ""
1111msgstr ""
12- "Project-Id-Version : Python 3.14 \n "
12+ "Project-Id-Version : Python 3.15 \n "
1313"Report-Msgid-Bugs-To : \n "
14- "POT-Creation-Date : 2026-04-23 15:47 +0000\n "
14+ "POT-Creation-Date : 2026-05-08 18:34 +0000\n "
1515"PO-Revision-Date : 2025-09-16 00:00+0000\n "
1616"Last-Translator : python-doc bot, 2025\n "
1717"Language-Team : Indonesian (https://app.transifex.com/python-doc/teams/5390/ "
@@ -492,15 +492,12 @@ msgstr ""
492492
493493msgid ""
494494"For signed integer formats, :exc:`OverflowError` is raised if the value is "
495- "out of range for the C type. For unsigned integer formats, no range checking "
496- "is done --- the most significant bits are silently truncated when the "
497- "receiving field is too small to receive the value."
495+ "out of range for the C type. For unsigned integer formats, the most "
496+ "significant bits are silently truncated when the receiving field is too "
497+ "small to receive the value, and :exc:`DeprecationWarning` is emitted when "
498+ "the value is larger than the maximal value for the C type or less than the "
499+ "minimal value for the corresponding signed integer type of the same size."
498500msgstr ""
499- "Untuk format bilangan bulat bertanda, :exc:`OverflowError` dimunculkan jika "
500- "nilainya berada di luar jangkauan untuk tipe C. Untuk format bilangan bulat "
501- "unsigned, tidak ada pemeriksaan rentang yang dilakukan --- bit yang paling "
502- "signifikan dipotong secara diam-diam ketika bidang penerima terlalu kecil "
503- "untuk menerima nilai."
504501
505502msgid "``b`` (:class:`int`) [unsigned char]"
506503msgstr "``b`` (:class:`int`) [unsigned char]"
@@ -517,10 +514,9 @@ msgstr "``B`` (:class:`int`) [unsigned char]"
517514
518515msgid ""
519516"Convert a Python integer to a tiny integer without overflow checking, stored "
520- "in a C :c:expr:`unsigned char`."
517+ "in a C :c:expr:`unsigned char`. Convert a Python integer to a C :c:expr:"
518+ "`unsigned char`."
521519msgstr ""
522- "Mengonversi bilangan bulat Python menjadi bilangan bulat kecil tanpa "
523- "pengecekan overflow, disimpan dalam file C: c: expr: `unsigned char`."
524520
525521msgid "``h`` (:class:`int`) [short int]"
526522msgstr "``h`` (:class:`int`) [short int]"
@@ -531,12 +527,8 @@ msgstr "Mengonversi bilangan bulat Python menjadi C: c: expr: `short int`."
531527msgid "``H`` (:class:`int`) [unsigned short int]"
532528msgstr "``H`` (:class:`int`) [unsigned short int]"
533529
534- msgid ""
535- "Convert a Python integer to a C :c:expr:`unsigned short int`, without "
536- "overflow checking."
530+ msgid "Convert a Python integer to a C :c:expr:`unsigned short int`."
537531msgstr ""
538- "Mengonversi bilangan bulat Python menjadi C :c:expr:`unsigned short int`, "
539- "tanpa pengecekan overflow."
540532
541533msgid "``i`` (:class:`int`) [int]"
542534msgstr "``i`` (:class:`int`) [int]"
@@ -547,12 +539,8 @@ msgstr "Mengonversi bilangan bulat Python ke bahasa C biasa :c:expr:`int`."
547539msgid "``I`` (:class:`int`) [unsigned int]"
548540msgstr "``I`` (:class:`int`) [unsigned int]"
549541
550- msgid ""
551- "Convert a Python integer to a C :c:expr:`unsigned int`, without overflow "
552- "checking."
542+ msgid "Convert a Python integer to a C :c:expr:`unsigned int`."
553543msgstr ""
554- "Mengonversi bilangan bulat Python menjadi C :c:expr:`unsigned int`, tanpa "
555- "pengecekan overflow."
556544
557545msgid "``l`` (:class:`int`) [long int]"
558546msgstr "``l`` (:class:`int`) [long int]"
@@ -563,12 +551,8 @@ msgstr "Mengonversi bilangan bulat Python menjadi C: c: expr: `long int`."
563551msgid "``k`` (:class:`int`) [unsigned long]"
564552msgstr "``k`` (:class:`int`) [unsigned long]"
565553
566- msgid ""
567- "Convert a Python integer to a C :c:expr:`unsigned long` without overflow "
568- "checking."
554+ msgid "Convert a Python integer to a C :c:expr:`unsigned long`."
569555msgstr ""
570- "Mengonversi bilangan bulat Python menjadi C :c:expr:`unsigned long` tanpa "
571- "pengecekan overflow."
572556
573557msgid "Use :meth:`~object.__index__` if available."
574558msgstr "Gunakan :meth:`~object.__index__` jika tersedia."
@@ -582,12 +566,8 @@ msgstr "Mengonversi bilangan bulat Python menjadi C :c:expr:`long long`."
582566msgid "``K`` (:class:`int`) [unsigned long long]"
583567msgstr "``K`` (:class:`int`) [unsigned long long]"
584568
585- msgid ""
586- "Convert a Python integer to a C :c:expr:`unsigned long long` without "
587- "overflow checking."
569+ msgid "Convert a Python integer to a C :c:expr:`unsigned long long`."
588570msgstr ""
589- "Mengonversi bilangan bulat Python menjadi C :c:expr:`unsigned long long` "
590- "tanpa pengecekan overflow."
591571
592572msgid "``n`` (:class:`int`) [:c:type:`Py_ssize_t`]"
593573msgstr "``n`` (:class:`int`) [:c:type:`Py_ssize_t`]"
@@ -636,6 +616,13 @@ msgstr "``D`` (:class:`complex`) [Py_complex]"
636616msgid "Convert a Python complex number to a C :c:type:`Py_complex` structure."
637617msgstr ""
638618
619+ msgid ""
620+ "For unsigned integer formats ``B``, ``H``, ``I``, ``k`` and ``K``, :exc:"
621+ "`DeprecationWarning` is emitted when the value is larger than the maximal "
622+ "value for the C type or less than the minimal value for the corresponding "
623+ "signed integer type of the same size."
624+ msgstr ""
625+
639626msgid "Other objects"
640627msgstr "Objek lain"
641628
@@ -963,6 +950,21 @@ msgstr ""
963950" // ... gunakan nilai ...\n"
964951"}"
965952
953+ msgid ""
954+ "Parse the parameters of a function that takes only array parameters into "
955+ "local variables (that is, a function using the :c:macro:`METH_FASTCALL` "
956+ "calling convention). Returns true on success; on failure, it returns false "
957+ "and raises the appropriate exception."
958+ msgstr ""
959+
960+ msgid ""
961+ "Parse the parameters of a function that takes both array and keyword "
962+ "parameters into local variables (that is, a function using the :c:macro:"
963+ "`METH_FASTCALL` ``|`` :c:macro:`METH_KEYWORDS` calling convention). Returns "
964+ "true on success; on failure, it returns false and raises the appropriate "
965+ "exception."
966+ msgstr ""
967+
966968msgid ""
967969"A simpler form of parameter retrieval which does not use a format string to "
968970"specify the types of the arguments. Functions which use this method to "
0 commit comments