Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 21 - 30 of about 39 for timeout (0.058 sec.)
21.11. http --- HTTP モジュール群 — Python 3.6.5 ドキュメント 7204
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... Authentication RFC 7235 , Section 3.2 408 REQUEST_TIMEOUT HTTP/1.1 RFC 7231 , Section 6.5.7 409 CONFLICT HTT ... ABLE HTTP/1.1 RFC 7231 , Section 6.6.4 504 GATEWAY_TIMEOUT HTTP/1.1 RFC 7231 , Section 6.6.5 505 HTTP_VERSION ...
https://man.plustar.jp/python/library/http.html - [similar]
21.16. nntplib --- NNTP プロトコルクライアント — Python 3.6.5 ドキュメント 7126
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ssword=None , readermode=None , usenetrc=False [ , timeout ] ) ¶ Return a new NNTP object, representing a con ... n host host , listening at port port . An optional timeout can be specified for the socket connection. If the ... ontext=None , readermode=None , usenetrc=False [ , timeout ] ) ¶ Return a new NNTP_SSL object, representing a ...
https://man.plustar.jp/python/library/nntplib.html - [similar]
What's New in Python 2.6 — Python 3.6.5 ドキュメント 7126
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho ... ラスのコンストラクタと connect() メソッドに省略可能 timeout パラメータが追加されました。タイムアウトを秒で指定 ... tributed by Raymond Hettinger.) 省略可能パラメータ timeout が httplib.HTTPConnection と HTTPSConnection クラス ... ) 両方のクラスのコンストラクタでは新たに省略可能な timeout パラメータを取ります。最初に接続を試みる際のタイム ... でしょう。 SocketServer モジュール内の基底クラスが、 timeout 属性で指定の無応答時間経過後に handle_timeout() メ ...
https://man.plustar.jp/python/whatsnew/2.6.html - [similar]
18.5.9. asyncio での開発 — Python 3.6.5 ドキュメント 6907
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ( coro_func (), loop ) result = future . result ( timeout ) # Wait for the result with a timeout AbstractEve ...
https://man.plustar.jp/python/library/asyncio-dev.html - [similar]
21.6. urllib.request --- URL を開くための拡張可能なライブラリ — Python 3.6.5 ド... 6907
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ます: urllib.request. urlopen ( url , data=None , [ timeout , ] * , cafile=None , capath=None , cadefault=Fals ... トに Connection:close ヘッダーを含みます。 任意引数 timeout には接続開始などのブロックする操作におけるタイムア ... ルです。 OpenerDirector. open ( url , data=None [ , timeout ] ) ¶ 与えられた url (リクエストオブジェクトでも文 ... の open() メソッドを呼び出します) 。 オプションの timeout 引数は、接続開始のようなブロックする処理におけるタ ...
https://man.plustar.jp/python/library/urllib.request.html - [similar]
16.8. logging.handlers --- ロギングハンドラ — Python 3.6.5 ドキュメント 6828
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... addrs , subject , credentials=None , secure=None , timeout=1.0 ) ¶ 新たな SMTPHandler クラスのインスタンスを返 ... ます。) SMTP サーバとのコミュニケーションのために、 timeout 引数を使用してタイムアウトを指定することができます ... 。 バージョン 3.3 で追加: timeout 引数が追加されました。 emit ( record ) ¶ レコードを ...
https://man.plustar.jp/python/library/logging.handlers.html - [similar]
What's New In Python 3.2 — Python 3.6.5 ドキュメント 6828
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho ... クがハングしたり遅延したりしうるのであれば、バリアを timeout 付きで作ることができます。全ての前任タスクがバリア ... _election ( site ) try : all_polls_closed . wait ( timeout = midnight - time . now ()) except BrokenBarrierEr ... 再帰的なロックが、 acquire() メソッドでオプションで timeout 引数を受け取るようになりました。 (Contributed by A ... 316 .) 同様に、 threading.Semaphore.acquire() にも timeout 引数が追加されました。 (Contributed by Torsten Lan ...
https://man.plustar.jp/python/whatsnew/3.2.html - [similar]
What's New In Python 3.5 — Python 3.6.5 ドキュメント 6828
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho ... audiu Popa in bpo-18615 .) socket ¶ Functions with timeouts now use a monotonic clock, instead of a system cl ... ocket.sendall() method no longer resets the socket timeout every time bytes are received or sent. The socket ... of the SSLSocket class no longer reset the socket timeout every time bytes are received or sent. The socket ...
https://man.plustar.jp/python/whatsnew/3.5.html - [similar]
18.5.8. キュー — Python 3.6.5 ドキュメント 6766
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... eue , LifoQueue ) に近くなるよう設計されましたが、 timeout 引数はありません。 asyncio.wait_for() 関数を用いて ...
https://man.plustar.jp/python/library/asyncio-queue.html - [similar]
18.5.7. 同期プリミティブ — Python 3.6.5 ドキュメント 6687
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... oundedSemaphore ) に近くなるよう設計されましたが、 timeout 引数はありません。 asyncio.wait_for() 関数を用いて ...
https://man.plustar.jp/python/library/asyncio-sync.html - [similar]
PREV 1 2 3 4 NEXT