Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 11 - 20 of about 39 for timeout (0.048 sec.)
21.17. smtplib --- SMTP プロトコルクライアント — Python 3.6.5 ドキュメント 8160
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... SMTP ( host='' , port=0 , local_hostname=None , [ timeout , ] source_address=None ) ¶ An SMTP instance encap ... code, an SMTPConnectError is raised. The optional timeout parameter specifies a timeout in seconds for block ... tion attempt (if not specified, the global default timeout setting will be used). If the timeout expires, soc ... ket.timeout is raised. The optional source_address parameter a ...
https://man.plustar.jp/python/library/smtplib.html - [similar]
21.21. socketserver --- ネットワークサーバのフレームワーク — Python 3.6.5 ドキ... 8019
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... d will be called. If no request is received within timeout seconds, handle_timeout() will be called and handl ... shutdown every poll_interval seconds. Ignores the timeout attribute. It also calls service_actions() , which ... は、 socket.SOCK_STREAM と socket.SOCK_DGRAM です。 timeout ¶ タイムアウト時間(秒)、もしくは、タイムアウトを望 ... がこの時間内にリクエストを受信しない場合、 handle_timeout() メソッドが呼ばれます。 TCPServer のような基底クラ ...
https://man.plustar.jp/python/library/socketserver.html - [similar]
18.8. signal --- 非同期イベントにハンドラを設定する — Python 3.6.5 ドキュメント 7799
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... or the rationale). signal. sigtimedwait ( sigset , timeout ) ¶ Like sigwaitinfo() , but takes an additional t ... imeout argument specifying a timeout. If timeout is specified as 0 , a poll is performe ... d. Returns None if a timeout occurs. 利用出来る環境 : Unix (さらに詳しい情報につ ... 更: The function is now retried with the recomputed timeout if interrupted by a signal not in sigset and the s ...
https://man.plustar.jp/python/library/signal.html - [similar]
18.4. selectors --- 高水準の I/O 多重化 — Python 3.6.5 ドキュメント 7643
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... 合は KeyError を送出します。 abstractmethod select ( timeout=None ) ¶ 登録されたいくつかのファイルオブジェクトが ... 準備できたか、タイムアウトするまで待機します。 timeout > 0 の場合、最大待機時間を秒で指定します。 timeout ... 現在準備できているファイルオブジェクトを報告します。 timeout が None の場合、監視しているファイルオブジェクトの ...
https://man.plustar.jp/python/library/selectors.html - [similar]
urllib パッケージを使ってインターネット上のリソースを取得するには — Python 3.6.... 7565
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python HOWTO » urll ... this proxy before proceeding.' ), 408 : ( 'Request Timeout' , 'Request timed out; try again later.' ), 409 : ... he request due to a high load' ), 504 : ( 'Gateway Timeout' , 'The gateway server did not receive a timely re ... ことができます import socket import urllib.request # timeout in seconds timeout = 10 socket . setdefaulttimeout ... ( timeout ) # this call to urllib.request.urlopen now uses t ...
https://man.plustar.jp/python/howto/urllib2.html - [similar]
21.14. poplib --- POP3 プロトコルクライアント — Python 3.6.5 ドキュメント 7565
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ます: class poplib. POP3 ( host , port=POP3_PORT [ , timeout ] ) ¶ このクラスが、実際にPOP3プロトコルを実装しま ... と、POP3標準のポート(110)が使われます。オプションの timeout 引数は、接続時のタイムアウト時間を秒数で指定します ... ort=POP3_SSL_PORT , keyfile=None , certfile=None , timeout=None , context=None ) ¶ POP3 クラスのサブクラスで、 ... 合、 POP3-over-SSL 標準の 995 番ポートが使われます。 timeout については POP3 クラスのコンストラクタの引数と同じ ...
https://man.plustar.jp/python/library/poplib.html - [similar]
27.2. faulthandler --- Python tracebackのダンプ — Python 3.6.5 ドキュメント 7424
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... をダンプする ¶ faulthandler. dump_traceback_later ( timeout , repeat=False , file=sys.stderr , exit=False ) ¶ ... timeout 秒経過後か、 repeat が True の場合は timeout 秒おきに全スレッドの traceback をダンプします。もし ...
https://man.plustar.jp/python/library/faulthandler.html - [similar]
18.1. socket --- 低水準ネットワークインターフェイス — Python 3.6.5 ドキュメント 7424
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ードを使用することができます。また、より汎用的に settimeout() メソッドでタイムアウトを指定する事ができます。 1 ... Error のサブクラスになりました。 exception socket. timeout ¶ OSError のサブクラスです。この例外は、あらかじめ ... settimeout() を呼び出して (あるいは setdefaulttimeout() を利用 ... , SO_PROTOCOL , SO_PEERSEC , SO_PASSSEC , TCP_USER_TIMEOUT , TCP_CONGESTION が追加されました。 バージョン 3.6 ...
https://man.plustar.jp/python/library/socket.html - [similar]
21.12. http.client --- HTTP プロトコルクライアント — Python 3.6.5 ドキュメント 7345
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... http.client. HTTPConnection ( host , port=None , [ timeout , ] source_address=None ) ¶ HTTPConnection インスタ ... HTTP ポート番号 (80) を使います。オプションの引数 timeout が渡された場合、ブロックする処理(コネクション接続な ... client . HTTPConnection ( 'www.python.org' , 80 , timeout = 10 ) バージョン 3.2 で変更: source_address が追加 ... t , port=None , key_file=None , cert_file=None , [ timeout , ] source_address=None , * , context=None , check ...
https://man.plustar.jp/python/library/http.client.html - [similar]
18.6. asyncore --- 非同期ソケットハンドラ — Python 3.6.5 ドキュメント 7204
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... を含む)が閉じるまで継続します。 asyncore. loop ( [ timeout [ , use_poll [ , map [ , count ] ] ] ] ) ¶ ポーリン ... てのチャネルがクローズされた場合のみ終了します。引数 timeout は select() または poll() の引数 timeout として渡さ ...
https://man.plustar.jp/python/library/asyncore.html - [similar]
PREV 1 2 3 4 NEXT