11# SOME DESCRIPTIVE TITLE.
2- # Copyright (C) 2001-2020, Python Software Foundation
2+ # Copyright (C) 2001 Python Software Foundation
33# This file is distributed under the same license as the Python package.
44# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
55#
66#, fuzzy
77msgid ""
88msgstr ""
9- "Project-Id-Version : Python 3.9 \n "
9+ "Project-Id-Version : Python 3.14 \n "
1010"Report-Msgid-Bugs-To : \n "
11- "POT-Creation-Date : 2020-08-20 03:54 +0000\n "
12- "PO-Revision-Date : 2017-02-16 17:37 +0000\n "
13- "Language-Team : Indonesian (https://www .transifex.com/python-doc/teams/5390/id/)\n "
11+ "POT-Creation-Date : 2025-05-09 14:19 +0000\n "
12+ "PO-Revision-Date : 2021-06-28 00:49 +0000\n "
13+ "Language-Team : Indonesian (https://app .transifex.com/python-doc/teams/5390/id/)\n "
1414"MIME-Version : 1.0\n "
1515"Content-Type : text/plain; charset=UTF-8\n "
1616"Content-Transfer-Encoding : 8bit\n "
@@ -36,71 +36,79 @@ msgstr ""
3636
3737#: ../../c-api/marshal.rst:16
3838msgid ""
39- "The module supports two versions of the data format: version 0 is the "
40- "historical version, version 1 shares interned strings in the file, and upon "
41- "unmarshalling. Version 2 uses a binary format for floating point numbers. "
42- "``Py_MARSHAL_VERSION`` indicates the current file format (currently 2)."
39+ "The module supports several versions of the data format; see the "
40+ ":py:mod:`Python module documentation <marshal>` for details."
4341msgstr ""
4442
45- #: ../../c-api/marshal.rst:24
43+ #: ../../c-api/marshal.rst:21
44+ msgid "The current format version. See :py:data:`marshal.version`."
45+ msgstr ""
46+
47+ #: ../../c-api/marshal.rst:25
4648msgid ""
47- "Marshal a :c:type :`long` integer, *value*, to *file*. This will only write "
49+ "Marshal a :c:expr :`long` integer, *value*, to *file*. This will only write "
4850"the least-significant 32 bits of *value*; regardless of the size of the "
49- "native :c:type :`long` type. *version* indicates the file format."
51+ "native :c:expr :`long` type. *version* indicates the file format."
5052msgstr ""
5153
52- #: ../../c-api/marshal.rst:31
54+ #: ../../c-api/marshal.rst:29 ../../c-api/marshal.rst:37
55+ msgid ""
56+ "This function can fail, in which case it sets the error indicator. Use "
57+ ":c:func:`PyErr_Occurred` to check for that."
58+ msgstr ""
59+
60+ #: ../../c-api/marshal.rst:34
5361msgid ""
5462"Marshal a Python object, *value*, to *file*. *version* indicates the file "
5563"format."
5664msgstr ""
5765
58- #: ../../c-api/marshal.rst:37
66+ #: ../../c-api/marshal.rst:42
5967msgid ""
6068"Return a bytes object containing the marshalled representation of *value*. "
6169"*version* indicates the file format."
6270msgstr ""
6371
64- #: ../../c-api/marshal.rst:41
72+ #: ../../c-api/marshal.rst:46
6573msgid "The following functions allow marshalled values to be read back in."
6674msgstr ""
6775
68- #: ../../c-api/marshal.rst:46
76+ #: ../../c-api/marshal.rst:51
6977msgid ""
70- "Return a C :c:type :`long` from the data stream in a :c:type :`FILE*` opened "
78+ "Return a C :c:expr :`long` from the data stream in a :c:expr :`FILE*` opened "
7179"for reading. Only a 32-bit value can be read in using this function, "
72- "regardless of the native size of :c:type :`long`."
80+ "regardless of the native size of :c:expr :`long`."
7381msgstr ""
7482
75- #: ../../c-api/marshal.rst:50 ../../c-api/marshal.rst:60
83+ #: ../../c-api/marshal.rst:55 ../../c-api/marshal.rst:65
7684msgid ""
7785"On error, sets the appropriate exception (:exc:`EOFError`) and returns "
7886"``-1``."
7987msgstr ""
8088
81- #: ../../c-api/marshal.rst:56
89+ #: ../../c-api/marshal.rst:61
8290msgid ""
83- "Return a C :c:type :`short` from the data stream in a :c:type :`FILE*` opened "
91+ "Return a C :c:expr :`short` from the data stream in a :c:expr :`FILE*` opened "
8492"for reading. Only a 16-bit value can be read in using this function, "
85- "regardless of the native size of :c:type :`short`."
93+ "regardless of the native size of :c:expr :`short`."
8694msgstr ""
8795
88- #: ../../c-api/marshal.rst:66
96+ #: ../../c-api/marshal.rst:71
8997msgid ""
90- "Return a Python object from the data stream in a :c:type :`FILE*` opened for "
98+ "Return a Python object from the data stream in a :c:expr :`FILE*` opened for "
9199"reading."
92100msgstr ""
93101
94- #: ../../c-api/marshal.rst:69 ../../c-api/marshal.rst:83
95- #: ../../c-api/marshal.rst:92
102+ #: ../../c-api/marshal.rst:74 ../../c-api/marshal.rst:88
103+ #: ../../c-api/marshal.rst:97
96104msgid ""
97105"On error, sets the appropriate exception (:exc:`EOFError`, :exc:`ValueError`"
98106" or :exc:`TypeError`) and returns ``NULL``."
99107msgstr ""
100108
101- #: ../../c-api/marshal.rst:75
109+ #: ../../c-api/marshal.rst:80
102110msgid ""
103- "Return a Python object from the data stream in a :c:type :`FILE*` opened for "
111+ "Return a Python object from the data stream in a :c:expr :`FILE*` opened for "
104112"reading. Unlike :c:func:`PyMarshal_ReadObjectFromFile`, this function "
105113"assumes that no further objects will be read from the file, allowing it to "
106114"aggressively load file data into memory so that the de-serialization can "
@@ -109,7 +117,7 @@ msgid ""
109117"anything else from the file."
110118msgstr ""
111119
112- #: ../../c-api/marshal.rst:89
120+ #: ../../c-api/marshal.rst:94
113121msgid ""
114122"Return a Python object from the data stream in a byte buffer containing "
115123"*len* bytes pointed to by *data*."
0 commit comments