Python 3.6.5 ドキュメント 検索
Results of 1 - 10 of about 24 for loader (0.016 sec.)
- 31.5. importlib --- import の実装 — Python 3.6.5 ドキュメント 15596
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ
...
ケージは自動的にインポートされます。 importlib. find_loader ( name , path=None ) ¶ モジュールのローダーを、オプ...
ュールが sys.modules にあれば、 sys.modules[name].__loader__ が返されます (ただしローダーが None であるか設定...
い。 バージョン 3.3 で追加. バージョン 3.4 で変更: __loader__ が set でない場合、 None に設定されているときと同...
d ) | +-- MetaPathFinder | +-- PathEntryFinder +-- Loader +-- ResourceLoader --------+ +-- InspectLoader | +...
- https://man.plustar.jp/python/library/importlib.html - [similar]
- 5. インポートシステム — Python 3.6.5 ドキュメント 10491
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 言語リファレ
...
部分で起こることの近似です: module = None if spec . loader is not None and hasattr ( spec . loader , 'create_...
assumed 'exec_module' will also be defined on the loader. module = spec . loader . create_module ( spec ) i...
re: _init_module_attrs ( spec , module ) if spec . loader is None : if spec . submodule_search_locations is...
ported raise ImportError elif not hasattr ( spec . loader , 'exec_module' ): module = spec . loader . load_m...
- https://man.plustar.jp/python/reference/import.html - [similar]
- 31.2. pkgutil --- パッケージ拡張ユーティリティ — Python 3.6.5 ドキュメント 9607
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ
...
レーションはもはや必要ありません。 class pkgutil. ImpLoader ( fullname , file , filename , etc ) ¶ Loader that...
ミュレーションはもはや必要ありません。 pkgutil. find_loader ( fullname ) ¶ Retrieve a module loader for the gi...
mportlib に基くように更新されました。 pkgutil. get_loader ( module_or_name ) ¶ Get a loader object for modul...
からリソースを取得します。 This is a wrapper for the loader get_data API. The package argument should be the n...
- https://man.plustar.jp/python/library/pkgutil.html - [similar]
- 31.4. runpy --- Python モジュールの位置特定と実行 — Python 3.6.5 ドキュメント 8773
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ
...
変数 __name__ , __spec__ , __file__ , __cached__ , __loader__ , __package__ はモジュールコードが実行される前に...
in__ , never run_name ). __file__ , __cached__ , __loader__ and __package__ are set as normal based on the m...
変数 __name__ , __spec__ , __file__ , __cached__ , __loader__ , __package__ はモジュールコードが実行される前に...
o the supplied path, and __spec__ , __cached__ , __loader__ and __package__ will all be set to None . If the...
- https://man.plustar.jp/python/library/runpy.html - [similar]
- 26.4. unittest --- ユニットテストフレームワーク — Python 3.6.5 ドキュメント 8406
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ
...
子 でなければなりません)。 テストディスカバリは TestLoader.discover() で実装されていますが、コマンドラインから...
.4.8.3. テストのロードと起動 ¶ class unittest. TestLoader ¶ TestLoader クラスはクラスとモジュールからテストス...
りません。 unittest モジュールの unittest.defaultTestLoader を共用インスタンスとして使用することができます。 し...
タンスで、属性をカスタマイズすることができます。 TestLoader オブジェクトには以下の属性があります: errors ¶ テス...
- https://man.plustar.jp/python/library/unittest.html - [similar]
- What's New In Python 3.4 — Python 3.6.5 ドキュメント 8340
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho
...
About IDLE からも辿り着けます。 importlib ¶ InspectLoader ABC に新規メソッド source_to_code() が追加されまし...
Eric Snow and Brett Cannon in bpo-15627 .) InspectLoader では get_code() メソッドへのデフォルト実装追加も行...
n bpo-18194 .) importlib ブートストラップ NamespaceLoader が InspectLoader ABC に従うようになりました。つまり...
理を使って bytes からソースをデコードします。 InspectLoader.get_source() メソッドを実装するのに便利です。 impo...
- https://man.plustar.jp/python/whatsnew/3.4.html - [similar]
- 36.2. imp --- import 内部へのアクセス — Python 3.6.5 ドキュメント 7956
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ
...
用してください, 互換性が必要な場合は importlib.find_loader() を使用してください。前者の使用例は、 importlib ド...
sing importlib.import_module() , otherwise use the loader returned by the replacement you chose for imp.find...
るモジュール上で、 __name__ だけでなく __name__ と __loader__ の両方が定義されていることに依存します。 バージョ...
- https://man.plustar.jp/python/library/imp.html - [similar]
- What's New In Python 3.6 — Python 3.6.5 ドキュメント 7956
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho
...
ed by Eric Snow in bpo-15767 .) importlib.util.LazyLoader now calls create_module() on the wrapped loader, r...
iltinImporter and importlib.machinery.ExtensionFileLoader couldn't be used with importlib.util.LazyLoader ....
9 .) importlib ¶ The importlib.machinery.SourceFileLoader.load_module() and importlib.machinery.SourcelessFi...
leLoader.load_module() methods are now deprecated. They wer...
- https://man.plustar.jp/python/whatsnew/3.6.html - [similar]
- 8.9. types --- 動的な型生成と組み込み型に対する名前 — Python 3.6.5 ドキュメント 7889
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ
...
ュールの docstring です。デフォルトは None です。 __loader__ ¶ モジュールをロードする loader です。デフォルト...
- https://man.plustar.jp/python/library/types.html - [similar]
- モジュールのインポート — Python 3.6.5 ドキュメント 7839
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python/C API リファ
...
かもしれない) からです。 モジュールの __spec__ と __loader__ がまだ設定されていなければ、適切な値が設定されま...
す。spec の ローダーは、モジュールの __loader__ が (もし設定されていれば) それに設定され、そうで...
なければ SourceFileLoader のインスタンスに設定されます。 モジュールの __file...
- https://man.plustar.jp/python/c-api/import.html - [similar]