@@ -15,7 +15,7 @@ msgid ""
15
15
msgstr ""
16
16
"Project-Id-Version : Python 3.7\n "
17
17
"Report-Msgid-Bugs-To : \n "
18
- "POT-Creation-Date : 2018-06-30 05:56 +0900\n "
18
+ "POT-Creation-Date : 2018-12-27 10:11 +0900\n "
19
19
"PO-Revision-Date : 2017-02-16 18:42+0000\n "
20
20
"Last-Translator : E. Kawashima, 2017\n "
21
21
"Language-Team : Japanese (https://www.transifex.com/python-doc/teams/5390/ja/)\n "
@@ -209,7 +209,13 @@ msgstr ""
209
209
"バイナリ *data* の16進表現を返します。*data* "
210
210
"の各バイトは、対応する2桁の16進表現に変換されます。したがって、返されるバイトオブジェクトは *data* の2倍の長さになります。"
211
211
212
- #: ../../library/binascii.rst:159
212
+ #: ../../library/binascii.rst:155
213
+ msgid ""
214
+ "Similar functionality (but returning a text string) is also conveniently "
215
+ "accessible using the :meth:`bytes.hex` method."
216
+ msgstr ""
217
+
218
+ #: ../../library/binascii.rst:161
213
219
msgid ""
214
220
"Return the binary data represented by the hexadecimal string *hexstr*. This"
215
221
" function is the inverse of :func:`b2a_hex`. *hexstr* must contain an even "
@@ -219,46 +225,53 @@ msgstr ""
219
225
"16進数表記の文字列 *hexstr* の表すバイナリデータを返します。この関数は :func:`b2a_hex` の逆です。 *hexstr* は "
220
226
"16進数字 (大文字でも小文字でも構いません) を偶数個含んでいなければなりません。そうでない場合、例外 :exc:`Error` が送出されます。"
221
227
222
- #: ../../library/binascii.rst:167
228
+ #: ../../library/binascii.rst:166
229
+ msgid ""
230
+ "Similar functionality (accepting only text string arguments, but more "
231
+ "liberal towards whitespace) is also accessible using the "
232
+ ":meth:`bytes.fromhex` class method."
233
+ msgstr ""
234
+
235
+ #: ../../library/binascii.rst:172
223
236
msgid "Exception raised on errors. These are usually programming errors."
224
237
msgstr "エラーが発生した際に送出される例外です。通常はプログラムのエラーです。"
225
238
226
- #: ../../library/binascii.rst:172
239
+ #: ../../library/binascii.rst:177
227
240
msgid ""
228
241
"Exception raised on incomplete data. These are usually not programming "
229
242
"errors, but may be handled by reading a little more data and trying again."
230
243
msgstr ""
231
244
"変換するデータが不完全な場合に送出される例外です。通常はプログラムのエラーではなく、多少追加読み込みを行って再度変換を試みることで対処できます。"
232
245
233
- #: ../../library/binascii.rst:180
246
+ #: ../../library/binascii.rst:185
234
247
msgid "Module :mod:`base64`"
235
248
msgstr ":mod:`base64` モジュール"
236
249
237
- #: ../../library/binascii.rst:179
250
+ #: ../../library/binascii.rst:184
238
251
msgid ""
239
252
"Support for RFC compliant base64-style encoding in base 16, 32, 64, and 85."
240
253
msgstr "RFC 準拠の base64 形式の、底が 16、32、64、85 のエンコーディング。"
241
254
242
- #: ../../library/binascii.rst:183
255
+ #: ../../library/binascii.rst:188
243
256
msgid "Module :mod:`binhex`"
244
257
msgstr ":mod:`binhex` モジュール"
245
258
246
- #: ../../library/binascii.rst:183
259
+ #: ../../library/binascii.rst:188
247
260
msgid "Support for the binhex format used on the Macintosh."
248
261
msgstr "Macintosh で使われる binhex フォーマットのサポート。"
249
262
250
- #: ../../library/binascii.rst:186
263
+ #: ../../library/binascii.rst:191
251
264
msgid "Module :mod:`uu`"
252
265
msgstr ":mod:`uu` モジュール"
253
266
254
- #: ../../library/binascii.rst:186
267
+ #: ../../library/binascii.rst:191
255
268
msgid "Support for UU encoding used on Unix."
256
269
msgstr "Unix で使われる UU エンコードのサポート。"
257
270
258
- #: ../../library/binascii.rst:188
271
+ #: ../../library/binascii.rst:193
259
272
msgid "Module :mod:`quopri`"
260
273
msgstr ":mod:`quopri` モジュール"
261
274
262
- #: ../../library/binascii.rst:189
275
+ #: ../../library/binascii.rst:194
263
276
msgid "Support for quoted-printable encoding used in MIME email messages."
264
277
msgstr "MIME 電子メールメッセージで使われる quoted-printable エンコードのサポート。"
0 commit comments