# SOME DESCRIPTIVE TITLE. # Copyright (C) 2001-2020, Python Software Foundation # This file is distributed under the same license as the Python package. # FIRST AUTHOR , YEAR. # # Translators: # tomo, 2018 # #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.6\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2020-02-09 18:48+0900\n" "PO-Revision-Date: 2018-06-29 17:29+0000\n" "Last-Translator: tomo, 2018\n" "Language-Team: Japanese (https://www.transifex.com/python-doc/teams/5390/" "ja/)\n" "Language: ja\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" #: ../../library/asyncio.rst:2 msgid ":mod:`asyncio` --- Asynchronous I/O, event loop, coroutines and tasks" msgstr ":mod:`asyncio` --- 非同期 I/O、イベントループ、コルーチンおよびタスク" #: ../../library/asyncio.rst:9 msgid "**Source code:** :source:`Lib/asyncio/`" msgstr "**ソースコード:** :source:`Lib/asyncio/`" #: ../../library/asyncio.rst:13 msgid "" "This module provides infrastructure for writing single-threaded concurrent " "code using coroutines, multiplexing I/O access over sockets and other " "resources, running network clients and servers, and other related " "primitives. Here is a more detailed list of the package contents:" msgstr "" "このモジュールは、コルーチン、ソケットあるいはその他リソースを使用した多重 I/" "O、ネットワーククライアントあるいはサーバーの実行、およびその他関連するプリミ" "ティブを使用した、シングルスレッド処理を並行で実行するコードを作成するための" "インフラストラクチャを提供します。ここではパッケージ内容の詳細ページの一覧を" "示しています:" #: ../../library/asyncio.rst:18 msgid "" "a pluggable :ref:`event loop ` with various system-" "specific implementations;" msgstr "" "さまざまなシステム固有の実装とプラグ可能な :ref:`イベントループ `;" #: ../../library/asyncio.rst:21 msgid "" ":ref:`transport ` and :ref:`protocol ` " "abstractions (similar to those in `Twisted `_);" msgstr "" ":ref:`トランスポート ` および :ref:`プロトコル ` の抽象化 (`Twisted `_ でのそれら" "に類似);" #: ../../library/asyncio.rst:24 msgid "" "concrete support for TCP, UDP, SSL, subprocess pipes, delayed calls, and " "others (some may be system-dependent);" msgstr "" "TCP、UDP、SSL、サブプロセス、遅延呼び出しなどの実体サポート (一部はシステム依" "存);" #: ../../library/asyncio.rst:27 msgid "" "a :class:`Future` class that mimics the one in the :mod:`concurrent.futures` " "module, but adapted for use with the event loop;" msgstr "" ":mod:`concurrent.futures` モジュールの一つに類似するが、イベントループでの使" "用に適応した :class:`Future` クラス;" #: ../../library/asyncio.rst:30 msgid "" "coroutines and tasks based on ``yield from`` (:PEP:`380`), to help write " "concurrent code in a sequential fashion;" msgstr "" "逐次処理の並行コードの作成を支援する、``yield from`` (:PEP:`380`) に基づいた" "コルーチンおよびタスク;" #: ../../library/asyncio.rst:33 msgid "cancellation support for :class:`Future`\\s and coroutines;" msgstr ":class:`Future` およびコルーチンのキャンセルのサポート;" #: ../../library/asyncio.rst:35 msgid "" ":ref:`synchronization primitives ` for use between coroutines " "in a single thread, mimicking those in the :mod:`threading` module;" msgstr "" ":mod:`threading` モジュール内のそれに類似した、シングルスレッド内のコルーチン" "間で使用する :ref:`同期化プリミティブ `;" #: ../../library/asyncio.rst:38 msgid "" "an interface for passing work off to a threadpool, for times when you " "absolutely, positively have to use a library that makes blocking I/O calls." msgstr "" "ブロッキング I/O 呼び出しを行うライブラリを絶対的かつ積極的に使う必要がある時" "に、スレッドプールに仕事を投げるためのインタフェース" #: ../../library/asyncio.rst:42 msgid "" "Asynchronous programming is more complex than classical \"sequential\" " "programming: see the :ref:`Develop with asyncio ` page which " "lists common traps and explains how to avoid them. :ref:`Enable the debug " "mode ` during development to detect common issues." msgstr "" "非同期プログラミングは古典的な \"逐次\" プログラミングと比べるとより複雑で" "す。非同期プログラミングで陥りやすい落とし穴の一覧とその回避方法について説明" "している :ref:`Develop with asyncio ` を参照してください。開発の" "間は、よくある問題を検出するために :ref:`デバッグモードを有効にしてください " "` 。" #: ../../library/asyncio.rst:47 msgid "Table of contents:" msgstr "目次:" #: ../../library/asyncio.rst:64 msgid "" "The :mod:`asyncio` module was designed in :PEP:`3156`. For a motivational " "primer on transports and protocols, see :PEP:`3153`." msgstr "" ":mod:`asyncio` モジュールは :PEP:`3156` において設計されました。トランスポー" "トとプロトコルの動機付けとなる入門書は :PEP:`3153` を参照してください。"