8
8
# tomo, 2019
9
9
# Yusuke Miyazaki <miyazaki.dev@gmail.com>, 2020
10
10
# OMOTO Kenji, 2020
11
+ # Naoki Nakamura <agent@sohzoh.com>, 2020
11
12
#
12
13
#, fuzzy
13
14
msgid ""
@@ -16,7 +17,7 @@ msgstr ""
16
17
"Report-Msgid-Bugs-To :\n "
17
18
"POT-Creation-Date :2020-02-09 12:40+0000\n "
18
19
"PO-Revision-Date :2019-09-01 14:44+0000\n "
19
- "Last-Translator :OMOTO Kenji , 2020\n "
20
+ "Last-Translator :Naoki Nakamura <agent@sohzoh.com> , 2020\n "
20
21
"Language-Team :Japanese (https://www.transifex.com/python-doc/teams/5390/ja/)\n "
21
22
"MIME-Version :1.0\n "
22
23
"Content-Type :text/plain; charset=UTF-8\n "
@@ -236,6 +237,8 @@ msgid ""
236
237
"extensions built in release mode and C extensions built using the stable "
237
238
"ABI."
238
239
msgstr ""
240
+ "Python はリリースモード、デバッグモード両方のビルドにおいて、同じABI を用いるようになりました。Unix において、Python "
241
+ "がデバッグモードでビルドされている場合、リリースモードで、あるいは安定ABI を用いて、ビルドされたC拡張モジュールを読み込むことができます。"
239
242
240
243
#: ../../whatsnew/3.8.rst:217
241
244
msgid ""
@@ -246,6 +249,11 @@ msgid ""
246
249
"environment variable, can be set using the new ``./configure --with-trace-"
247
250
"refs`` build option. (Contributed by Victor Stinner in :issue:`36465`.)"
248
251
msgstr ""
252
+ "リリースビルドとデバッグビルドはABI 互換になりました。``Py_DEBUG`` マクロを定義することは、ABI "
253
+ "の非互換性を引き起こす、``Py_TRACE_REFS`` マクロの定義を伴いません。:func:`sys.getobjects` 関数の定義や "
254
+ ":envvar:`PYTHONDUMPREFS` 環境変数を加えるような ``Py_TRACE_REFS`` マクロは、新しいビルドオプション "
255
+ "``./configure --with-trace-refs`` を有効にすることで利用できます。 (Victor Stinner の貢献による "
256
+ ":issue:`36465`)"
249
257
250
258
#: ../../whatsnew/3.8.rst:225
251
259
msgid ""
@@ -254,13 +262,19 @@ msgid ""
254
262
"extension built using a shared library Python. (Contributed by Victor "
255
263
"Stinner in :issue:`21536`.)"
256
264
msgstr ""
265
+ "Unix においては、Android とCygwin を除き、C拡張モジュールはlibpython "
266
+ "にリンクされなくなりました。静的リンクされたPython は、Python "
267
+ "共有ライブラリを用いてビルドされたC拡張モジュールを読み込めます。(Victor Stinner の貢献による :issue:`21536`.)"
257
268
258
269
#: ../../whatsnew/3.8.rst:232
259
270
msgid ""
260
271
"On Unix, when Python is built in debug mode, import now also looks for C "
261
272
"extensions compiled in release mode and for C extensions compiled with the "
262
273
"stable ABI. (Contributed by Victor Stinner in :issue:`36722`.)"
263
274
msgstr ""
275
+ "Unix において、Python がデバッグモードでビルドされている場合、インポート(:keyword:`import`) "
276
+ "は、リリースモードで、あるいは安定ABI を用いて、ビルドされたC拡張モジュールを探すようになりました。(Victor Stinner の貢献による "
277
+ ":issue:`36722`.)"
264
278
265
279
#: ../../whatsnew/3.8.rst:237
266
280
msgid ""
@@ -2846,7 +2860,7 @@ msgstr ""
2846
2860
2847
2861
#: ../../whatsnew/3.8.rst:2211
2848
2862
msgid "Notable changes in Python 3.8.1"
2849
- msgstr ""
2863
+ msgstr "Python3.8.1 での重要な変更点 "
2850
2864
2851
2865
#: ../../whatsnew/3.8.rst:2213
2852
2866
msgid ""
@@ -2857,14 +2871,20 @@ msgid ""
2857
2871
"``loop.create_datagram_endpoint()``. (Contributed by Kyle Stanley, Antoine "
2858
2872
"Pitrou, and Yury Selivanov in :issue:`37228`.)"
2859
2873
msgstr ""
2874
+ "セキュリティ上の重大な懸念により、:meth:`asyncio.loop.create_datagram_endpoint` での "
2875
+ "*reuse_address* 引数は無効になりました。これはソケットオプション ``SO_REUSEADDR`` のUDP "
2876
+ "における挙動が原因です。詳しくは、``loop.create_datagram_endpoint()`` のドキュメントを参照してください。(Kyle "
2877
+ "Stanley, Antoine Pitrou, Yury Selivanov による貢献 :issue:`37228`)"
2860
2878
2861
2879
#: ../../whatsnew/3.8.rst:2221
2862
2880
msgid "Notable changes in Python 3.8.2"
2863
- msgstr ""
2881
+ msgstr "Python3.8.2 での重要な変更点 "
2864
2882
2865
2883
#: ../../whatsnew/3.8.rst:2223
2866
2884
msgid ""
2867
2885
"Fixed a regression with the ``ignore`` callback of :func:`shutil.copytree`. "
2868
2886
"The argument types are now str and List[str] again. (Contributed by Manuel "
2869
2887
"Barkhau and Giampaolo Rodola in :issue:`39390`.)"
2870
2888
msgstr ""
2889
+ ":func:`shutil.copytree` における ``ignore`` コールバックの扱いを再修正しました。コールバックの引数は再び、 str "
2890
+ "と List[str] になります。(Manuel Barkhau, Giampaolo Rodola の貢献による :issue:`39390`)"