Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 11 - 20 of about 24 for loader (0.044 sec.)
用語集 — Python 3.6.5 ドキュメント 7839
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » 用語集 ¶ >>> インタ ... nder (ファインダ) インポートされているモジュールの loader の発見を試行するオブジェクトです。 Python 3.3 以降 ... モジュールを探してロードするオブジェクト。 finder と loader のどちらでもあるオブジェクト。 interactive (対話的 ... がない場合、 range(256) の全ての要素が処理されます。 loader モジュールをロードするオブジェクト。 load_module() ... を、 abstract base class については importlib.abc.Loader を参照してください。 mapping (マッピング) 任意のキ ...
https://man.plustar.jp/python/glossary.html - [similar]
11.9. linecache --- テキストラインにランダムアクセスする — Python 3.6.5 ドキュ... 7839
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... rt元に対応するためまず module_globals の PEP 302 __loader__ をチェックし、そのあと sys.path を探索します。 l ...
https://man.plustar.jp/python/library/linecache.html - [similar]
What's New in Python 2.3 — Python 3.6.5 ドキュメント 7839
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho ... な詳細は PEP 302 参照): for mp in sys . meta_path : loader = mp ( fullname ) if loader is not None : < module ... > = loader . load_module ( fullname ) for path in sys . path ... portError, so try the other path hooks pass else : loader = importer . find_module ( fullname ) < module > = ... loader . load_module ( fullname ) # Not found! raise Impo ...
https://man.plustar.jp/python/whatsnew/2.3.html - [similar]
モジュールオブジェクト (module object) — Python 3.6.5 ドキュメント 7773
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python/C API リファ ... モジュールの __name__ , __doc__ , __package__ , __loader__ 属性に値が入っています ( __name__ 以外は全て Non ... .3 で追加. バージョン 3.4 で変更: __package__ と __loader__ は None に設定されます。 PyObject * PyModule_New ...
https://man.plustar.jp/python/c-api/module.html - [similar]
What's New In Python 3.3 — Python 3.6.5 ドキュメント 7773
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho ... ート機構を明示的なものにする)]、 bpo-14646 [Require loaders set __loader__ and __package__ (ローダーが __load ... ラスは sys.path_hooks の暗黙のメンバでした。 ローダ (loader) については、新規の抽象基底クラス importlib.abc.Fi ... leLoader が、モジュールのコードを格納する機構としてのファイ ... ースファイルのローダ ( importlib.machinery.SourceFileLoader )、ソースを持たないバイトコードのためのローダ ( im ...
https://man.plustar.jp/python/whatsnew/3.3.html - [similar]
29.6. contextlib --- with 文コンテキスト用ユーティリティ — Python 3.6.5 ドキュ... 7706
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... しても利用でき: with track_entry_and_exit ( 'widget loader' ): print ( 'Some time consuming activity goes her ... しても利用できます: @track_entry_and_exit ( 'widget loader' ) def activity (): print ( 'Some time consuming a ...
https://man.plustar.jp/python/library/contextlib.html - [similar]
26.8. test --- Python 用回帰テストパッケージ — Python 3.6.5 ドキュメント 7706
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... n() を実行し、 test_main が無い場合は unittest.TestLoader.loadTestsFromModule からテストをロードしてテストを ... なりません。指定された各モジュールは、 unittest.TestLoader.loadTestsFromModule() でスキャンされます。この関数 ... bots. test.support. load_package_tests ( pkg_dir , loader , standard_tests , pattern ) ¶ Generic implementat ... ges. pkg_dir is the root directory of the package; loader , standard_tests , and pattern are the arguments e ...
https://man.plustar.jp/python/library/test.html - [similar]
27.7. tracemalloc --- メモリ割り当ての追跡 — Python 3.6.5 ドキュメント 7572
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ython3.4/runpy.py" , line 160 "__main__" , fname , loader , pkg_name ) We can see that the most memory was a ...
https://man.plustar.jp/python/library/tracemalloc.html - [similar]
28.4. zipapp --- 実行可能な python zip 書庫を管理する — Python 3.6.5 ドキュメン... 7572
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... code must be present in the filesystem for the OS loader to load it). In this case, you can exclude that de ...
https://man.plustar.jp/python/library/zipapp.html - [similar]
What's New In Python 3.5 — Python 3.6.5 ドキュメント 7572
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho ... udiu Popa in bpo-20197 .) importlib ¶ The util.LazyLoader class allows for lazy loading of modules in applic ... ted by Brett Cannon in bpo-17621 .) The abc.InspectLoader.source_to_code() method is now a static method. Th ... のデータを使うようになりました。 unittest ¶ The TestLoader.loadTestsFromModule() method now accepts a keyword ... ittest discovery errors now are exposed in the TestLoader.errors attribute of the TestLoader instance. (Cont ...
https://man.plustar.jp/python/whatsnew/3.5.html - [similar]
PREV 1 2 3 NEXT