@@ -15,7 +15,7 @@ msgid ""
15
15
msgstr ""
16
16
"Project-Id-Version : Python 3.9\n "
17
17
"Report-Msgid-Bugs-To : \n "
18
- "POT-Creation-Date : 2021-01 -01 05:02 +0000\n "
18
+ "POT-Creation-Date : 2021-07 -01 06:46 +0000\n "
19
19
"PO-Revision-Date : 2017-02-16 23:18+0000\n "
20
20
"
Last-Translator :
Takanori Suzuki <[email protected] >, 2021\n "
21
21
"Language-Team : Japanese (https://www.transifex.com/python-doc/teams/5390/ja/)\n "
@@ -129,7 +129,13 @@ msgid ""
129
129
"(see below)."
130
130
msgstr "*version* 引数は ``dump`` が使用するデータフォーマットを指定します (下記を参照してください)。"
131
131
132
- #: ../../library/marshal.rst:72
132
+ #: ../../library/marshal.rst:69 ../../library/marshal.rst:101
133
+ msgid ""
134
+ "Raises an :ref:`auditing event <auditing>` ``marshal.dumps`` with arguments "
135
+ "``value``, ``version``."
136
+ msgstr ""
137
+
138
+ #: ../../library/marshal.rst:74
133
139
msgid ""
134
140
"Read one value from the open file and return it. If no valid value is read "
135
141
"(e.g. because the data has a different Python version's incompatible marshal"
@@ -142,14 +148,27 @@ msgstr ""
142
148
143
149
#: ../../library/marshal.rst:79
144
150
msgid ""
151
+ "Raises an :ref:`auditing event <auditing>` ``marshal.load`` with no "
152
+ "arguments."
153
+ msgstr ""
154
+
155
+ #: ../../library/marshal.rst:83
156
+ msgid ""
145
157
"If an object containing an unsupported type was marshalled with "
146
158
":func:`dump`, :func:`load` will substitute ``None`` for the unmarshallable "
147
159
"type."
148
160
msgstr ""
149
161
"サポートされていない型を含むオブジェクトが :func:`dump` で整列化されている場合、 :func:`load` は整列化不能な値を "
150
162
"``None`` で置き換えます。"
151
163
152
- #: ../../library/marshal.rst:85
164
+ #: ../../library/marshal.rst:88
165
+ msgid ""
166
+ "This call used to raise a ``code.__new__`` audit event for each code object."
167
+ " Now it raises a single ``marshal.load`` event for the entire load "
168
+ "operation."
169
+ msgstr ""
170
+
171
+ #: ../../library/marshal.rst:94
153
172
msgid ""
154
173
"Return the bytes object that would be written to a file by ``dump(value, "
155
174
"file)``. The value must be a supported type. Raise a :exc:`ValueError` "
@@ -159,13 +178,13 @@ msgstr ""
159
178
"でファイルに書き込まれるようなbytesオブジェクトを返します。値はサポートされている型でなければなりません。値がサポートされていない型のオブジェクト "
160
179
"(またはサポートされていない型のオブジェクトを含むようなオブジェクト) の場合、 :exc:`ValueError` 例外が送出されます。"
161
180
162
- #: ../../library/marshal.rst:89
181
+ #: ../../library/marshal.rst:98
163
182
msgid ""
164
183
"The *version* argument indicates the data format that ``dumps`` should use "
165
184
"(see below)."
166
185
msgstr "*version* 引数は ``dumps`` が使用するデータフォーマットを指定します (下記を参照してください)。"
167
186
168
- #: ../../library/marshal.rst:95
187
+ #: ../../library/marshal.rst:106
169
188
msgid ""
170
189
"Convert the :term:`bytes-like object` to a value. If no valid value is "
171
190
"found, raise :exc:`EOFError`, :exc:`ValueError` or :exc:`TypeError`. Extra "
@@ -175,11 +194,24 @@ msgstr ""
175
194
":exc:`EOFError`, :exc:`ValueError` または :exc:`TypeError` が送出されます。入力中の余分な "
176
195
"bytes は無視されます。"
177
196
178
- #: ../../library/marshal.rst:100
197
+ #: ../../library/marshal.rst:110
198
+ msgid ""
199
+ "Raises an :ref:`auditing event <auditing>` ``marshal.loads`` with argument "
200
+ "``bytes``."
201
+ msgstr ""
202
+
203
+ #: ../../library/marshal.rst:114
204
+ msgid ""
205
+ "This call used to raise a ``code.__new__`` audit event for each code object."
206
+ " Now it raises a single ``marshal.loads`` event for the entire load "
207
+ "operation."
208
+ msgstr ""
209
+
210
+ #: ../../library/marshal.rst:118
179
211
msgid "In addition, the following constants are defined:"
180
212
msgstr "これに加えて、以下の定数が定義されています:"
181
213
182
- #: ../../library/marshal.rst:104
214
+ #: ../../library/marshal.rst:122
183
215
msgid ""
184
216
"Indicates the format that the module uses. Version 0 is the historical "
185
217
"format, version 1 shares interned strings and version 2 uses a binary format"
@@ -189,11 +221,11 @@ msgstr ""
189
221
"このモジュールが利用するバージョンを表します。バージョン0 は歴史的なフォーマットです。バージョン1 は文字列の再利用をします。バージョン2 "
190
222
"は浮動小数点数にバイナリフォーマットを使用します。バージョン3 はオブジェクトのインスタンス化と再帰をサポートします。現在のバージョンは4です。"
191
223
192
- #: ../../library/marshal.rst:112
224
+ #: ../../library/marshal.rst:130
193
225
msgid "Footnotes"
194
226
msgstr "脚注"
195
227
196
- #: ../../library/marshal.rst:113
228
+ #: ../../library/marshal.rst:131
197
229
msgid ""
198
230
"The name of this module stems from a bit of terminology used by the "
199
231
"designers of Modula-3 (amongst others), who use the term \" marshalling\" for"
0 commit comments