Python 3.6.5 ドキュメント 検索
Results of 1 - 10 of about 12 for dispatch (0.097 sec.)
- 27.1. bdb --- デバッガーフレームワーク — Python 3.6.5 ドキュメント 13442
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ
...
属性を、デバッグを始められる状態に設定します。 trace_dispatch ( frame , event , arg ) ¶ この関数は、デバッグされ...
より詳しい情報は、 標準型の階層 を参照してください。 dispatch_line ( frame ) ¶ デバッガーが現在の行で止まるべきで...
す。このスコープのこれからのトレースのために、 trace_dispatch() メソッドの参照を返します。 dispatch_call ( frame...
す。このスコープのこれからのトレースのために、 trace_dispatch() メソッドの参照を返します。 dispatch_return ( fra...
- https://man.plustar.jp/python/library/bdb.html - [similar]
- 21.27. xmlrpc.server --- 基本的なXML-RPCサーバー — Python 3.6.5 ドキュメント 11143
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ
...
いメソッド名を公開するのに使われます。 instance に _dispatch() メソッドがあった場合、リクエストされたメソッド名...
と引数で _dispatch() を呼び出します。 API は def _dispatch(self, meth...
ams) のように引数リストを展開して呼び出されます。 _dispatch() の返り値は結果としてクライアントに返されます。 i...
nstance に _dispatch() メソッドがない場合、リクエストされたメソッド名に...
- https://man.plustar.jp/python/library/xmlrpc.server.html - [similar]
- 12.1. pickle --- Python オブジェクトの直列化 — Python 3.6.5 ドキュメント 10347
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ
...
いては 外部オブジェクトの永続化 を参照してください。 dispatch_table ¶ pickler オブジェクトのディスパッチテーブル...
なりません。 デフォルトでは、pickler オブジェクトは dispatch_table 属性を持たず、代わりに copyreg モジュールによ...
オブジェクトによる pickle 化をカスタマイズするために dispatch_table 属性に dict-like オブジェクトを設定することが...
できます。あるいは、 Pickler のサブクラスが dispatch_table 属性を持てば、そのクラスのインスタンスに対す...
- https://man.plustar.jp/python/library/pickle.html - [similar]
- 10.2. functools --- 高階関数と呼び出し可能オブジェクトの操作 — Python 3.6.5 ド... 8507
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ
...
value , element ) return value @ functools. singledispatch ¶ 関数を シングルディスパッチ generic function に変...
換します。 汎用関数を定義するには、 @singledispatch デコレータでデコレートします。ディスパッチは 1 つ目...
に作成してください: >>> from functools import singledispatch >>> @singledispatch ... def fun ( arg , verbose =...
用の実装をさらに検索するために使用されます。 @singledispatch でデコレートされた元の関数は基底の object 型に登録...
- https://man.plustar.jp/python/library/functools.html - [similar]
- 12.2. copyreg --- pickle サポート関数を登録する — Python 3.6.5 ドキュメント 8277
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ
...
r オブジェクトまたは pickle.Pickler のサブクラスの dispatch_table 属性を、リダクション関数の宣言のために使うこ...
- https://man.plustar.jp/python/library/copyreg.html - [similar]
- 19.1.7. email.contentmanager: MIME 内容の管理 — Python 3.6.5 ドキュメント 8047
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ
...
ations, as well as the get_content and set_content dispatch methods. get_content ( msg , *args , **kw ) ¶ Look...
- https://man.plustar.jp/python/library/email.contentmanager.html - [similar]
- プログラミング FAQ — Python 3.6.5 ドキュメント 7818
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python よくある質問
...
クニックでもあります: def a (): pass def b (): pass dispatch = { 'go' : a , 'stop' : b } # Note lack of parens...
for funcs dispatch [ get_input ()]() # Note trailing parens to call f...
- https://man.plustar.jp/python/faq/programming.html - [similar]
- 用語集 — Python 3.6.5 ドキュメント 7818
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » 用語集 ¶ >>> インタ
...
ディスパッチアルゴリズムにより決定されます。 single dispatch 、 functools.singledispatch() デコレータ、 PEP 443...
用することで明示的に登録することが出来ます。 single dispatch generic function の一種で実装は一つの引数の型により...
- https://man.plustar.jp/python/glossary.html - [similar]
- What's New In Python 3.1 — Python 3.6.5 ドキュメント 7818
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho
...
he bytecode evaluation loop is compiled with a new dispatch mechanism which gives speedups of up to 20%, depen...
- https://man.plustar.jp/python/whatsnew/3.1.html - [similar]
- デザインと歴史 FAQ — Python 3.6.5 ドキュメント 7694
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python よくある質問
...
索できます: def visit_a ( self , ... ): ... ... def dispatch ( self , value ): method_name = 'visit_' + str ( v...
- https://man.plustar.jp/python/faq/design.html - [similar]