Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 11 - 20 of about 54 for handle (0.021 sec.)
Download — Python 3.6.5 ドキュメント 7357
ナビゲーション 索引 モジュール | Python » 3.6.5 ドキュメント » Download Python 3.6.5 Documentati ... rchives; these are bzipped tar archives and can be handled in the usual way using tar and the bzip2 program. ... The InfoZIP unzip program can be used to handle the ZIP archives if desired. The .tar.bz2 archives ...
https://man.plustar.jp/python/download.html - [similar]
19.1.4. email.policy: ポリシーオブジェクト — Python 3.6.5 ドキュメント 7357
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... custom policy must implement all of these methods. handle_defect ( obj , defect ) ¶ Handle a defect found on ... ts attribute of obj . When the email package calls handle_defect , obj will normally have a defects attribut ... characters (the smtplib.SMTP.send_message() method handles this automatically). email.policy. HTTP ¶ Suitabl ...
https://man.plustar.jp/python/library/email.policy.html - [similar]
34.2. msvcrt --- MS VC++実行時システムの有用なルーチン群 — Python 3.6.5 ドキュ... 7357
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ドにするには os.O_BINARY にします。 msvcrt. open_osfhandle ( handle , flags ) ¶ C 言語による実行時システムにお ... けるファイル記述子をファイルハンドル handle から生成します。 flags パラメタは os.O_APPEND 、 o ... を生成するために使うことができます。 msvcrt. get_osfhandle ( fd ) ¶ ファイル記述子 fd のファイルハンドルを返し ...
https://man.plustar.jp/python/library/msvcrt.html - [similar]
What's New In Python 3.4 — Python 3.6.5 ドキュメント 7283
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho ... os.get_inheritable() , os.set_inheritable() os.get_handle_inheritable() , os.set_handle_inheritable() socket ... ex' is not a text encoding; use codecs.decode() to handle arbitrary codecs >>> "hello" . encode ( "rot13" ) ... 13' is not a text encoding; use codecs.encode() to handle arbitrary codecs >>> open ( "foo.txt" , encoding = ... 'hex' is not a text encoding; use codecs.open() to handle arbitrary codecs 関連する変更で、後方互換性を壊すこ ...
https://man.plustar.jp/python/whatsnew/3.4.html - [similar]
19.1.6. email.headerregistry: カスタムヘッダーオブジェクト — Python 3.6.5 ドキ... 7209
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ntent-transfer-encoded parts, but should correctly handle all valid unicode characters as well so that it ca ... ts in to the kwds dictionary should be removed and handled, and the remaining contents of kw (and args ) pas ... titem__ ( name ) ¶ Construct and return a class to handle creating a name header. __call__ ( name , value ) ... characters. To support SMTP ( RFC 5321 ), Address handles one special case: if username and domain are both ...
https://man.plustar.jp/python/library/email.headerregistry.html - [similar]
18.5.9. asyncio での開発 — Python 3.6.5 ドキュメント 7134
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... try/except を使用します: @asyncio . coroutine def handle_exception (): try : yield from bug () except Excep ... ncio . get_event_loop () asyncio . ensure_future ( handle_exception ()) loop . run_forever () loop . close ( ...
https://man.plustar.jp/python/library/asyncio-dev.html - [similar]
18.5.5. ストリーム (コルーチンベースの API) — Python 3.6.5 ドキュメント 7134
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ーバーです: import asyncio @asyncio . coroutine def handle_echo ( reader , writer ): data = yield from reader ... get_event_loop () coro = asyncio . start_server ( handle_echo , '127.0.0.1' , 8888 , loop = loop ) server = ...
https://man.plustar.jp/python/library/asyncio-stream.html - [similar]
21.4. wsgiref --- WSGI ユーティリティとリファレンス実装 — Python 3.6.5 ドキュメ... 7134
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... er ( host , port , app , server_class=WSGIServer , handler_class=WSGIRequestHandler ) ¶ host と port 上で待機 ... 与えられた server_class のインスタンスで、指定された handler_class を使ってリクエストを処理します。 app は PEP ... Alternative: serve one request, then exit httpd . handle_request () wsgiref.simple_server. demo_app ( envir ... imple_server. WSGIServer ( server_address , RequestHandlerClass ) ¶ WSGIServer インスタンスを作成します。 se ...
https://man.plustar.jp/python/library/wsgiref.html - [similar]
21.27. xmlrpc.server --- 基本的なXML-RPCサーバー — Python 3.6.5 ドキュメント 7134
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... るか、 SimpleXMLRPCServer を使うか、 CGIXMLRPCRequestHandler を使って CGI 環境に組み込まれるかの、いずれかです ... xmlrpc.server. SimpleXMLRPCServer ( addr , requestHandler=SimpleXMLRPCRequestHandler , logRequests=True , a ... 関数の登録のためのメソッドを提供します。 引数 requestHandler にはリクエストハンドラーインスタンスのファクトリー ... を設定します。 デフォルトは SimpleXMLRPCRequestHandler です。 引数 addr と requestHandler は socketserve ...
https://man.plustar.jp/python/library/xmlrpc.server.html - [similar]
28.4. zipapp --- 実行可能な python zip 書庫を管理する — Python 3.6.5 ドキュメン... 7134
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... OWS int WINAPI wWinMain ( HINSTANCE hInstance , /* handle to current instance */ HINSTANCE hPrevInstance , / ... * handle to previous instance */ LPWSTR lpCmdLine , /* poin ...
https://man.plustar.jp/python/library/zipapp.html - [similar]
PREV 1 2 3 4 5 6 NEXT