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