Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 11 - 20 of about 48 for LOAD (0.012 sec.)
12.4. marshal --- 内部使用向けの Python オブジェクト整列化 — Python 3.6.5 ドキ... 8421
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... データがファイルに書き込まれます。このオブジェクトは load() で適切に読み出されることはありません。 version 引 ... ットを指定します (下記を参照してください)。 marshal. load ( file ) ¶ Read one value from the open file and r ... を含むオブジェクトが dump() で整列化されている場合、 load() は整列化不能な値を None で置き換えます。 marshal ... ットを指定します (下記を参照してください)。 marshal. loads ( bytes ) ¶ Convert the bytes-like object to a va ...
https://man.plustar.jp/python/library/marshal.html - [similar]
26.8. test --- Python 用回帰テストパッケージ — Python 3.6.5 ドキュメント 8421
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... n() を実行し、 test_main が無い場合は unittest.TestLoader.loadTestsFromModule からテストをロードしてテスト ... なりません。指定された各モジュールは、 unittest.TestLoader.loadTestsFromModule() でスキャンされます。この関 ... ることで新規にインポートしてそのコピーを返します。 reload() 関数と違い、もとのモジュールはこの操作によって影 ... y, which is a problem for buildbots. test.support. load_package_tests ( pkg_dir , loader , standard_tests ...
https://man.plustar.jp/python/library/test.html - [similar]
36.2. imp --- import 内部へのアクセス — Python 3.6.5 ドキュメント 8269
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ジュール M を見つけるためには、まず find_module() と load_module() を使用してパッケージ P を見つけてロードし ... 用してください, 互換性が必要な場合は importlib.find_loader() を使用してください。前者の使用例は、 importlib ... rtlib-examples セクションを参照してください。 imp. load_module ( name , file , pathname , description ) ¶ ... sing importlib.import_module() , otherwise use the loader returned by the replacement you chose for imp.fi ...
https://man.plustar.jp/python/library/imp.html - [similar]
21.24. http.cookiejar --- HTTP クライアント用の Cookie 処理 — Python 3.6.5 ドキ... 7967
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... 下の例外を定義しています: exception http.cookiejar. LoadError ¶ この例外は FileCookieJar インスタンスがファ ... からクッキーを読み込むのに失敗した場合に発生します。 LoadError は OSError のサブクラスです。 バージョン 3.3 ... で変更: LoadError was made a subclass of OSError instead of IOE ... ss http.cookiejar. FileCookieJar ( filename , delayload=None , policy=None ) ¶ policy は CookiePolicy イン ...
https://man.plustar.jp/python/library/http.cookiejar.html - [similar]
27.7. tracemalloc --- メモリ割り当ての追跡 — Python 3.6.5 ドキュメント 7815
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... nt = 1 , average = 48.0 KiB We can see that Python loaded 4855 KiB data (bytecode and constants) from modu ... 126 ), average = 546 B We can see that Python has loaded 8173 KiB of module data (bytecode and constants) ... , and that this is 4428 KiB more than had been loaded before the tests, when the previous snapshot was ... をディスクに書き込むことが出来ます。 そして Snapshot.load() メソッドを使用してスナップショットを再読み込みし ...
https://man.plustar.jp/python/library/tracemalloc.html - [similar]
5. インポートシステム — Python 3.6.5 ドキュメント 7815
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 言語リファレ ... とに注意してください。それとは対照的に、 importlib.reload() は 同じ モジュールオブジェクトを再利用し、モジュ ... 部分で起こることの近似です: module = None if spec . loader is not None and hasattr ( spec . loader , 'creat ... assumed 'exec_module' will also be defined on the loader. module = spec . loader . create_module ( spec ) ... re: _init_module_attrs ( spec , module ) if spec . loader is None : if spec . submodule_search_locations i ...
https://man.plustar.jp/python/reference/import.html - [similar]
What's New In Python 3.6 — Python 3.6.5 ドキュメント 7679
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho ... be adapted. See bpo-27819 for more details. The upload command now longer tries to change CR end-of-line ... ed by Eric Snow in bpo-15767 .) importlib.util.LazyLoader now calls create_module() on the wrapped loader, ... iltinImporter and importlib.machinery.ExtensionFileLoader couldn't be used with importlib.util.LazyLoader ... ributed by Nick Coghlan in bpo-27172 ) json ¶ json.load() と json.loads() は、バイナリ入力をサポートしまし ...
https://man.plustar.jp/python/whatsnew/3.6.html - [similar]
17.4. concurrent.futures -- 並列タスク実行 — Python 3.6.5 ドキュメント 7527
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... a single page and report the URL and contents def load_url ( url , timeout ): with urllib . request . url ... utor ( max_workers = 5 ) as executor : # Start the load operations and mark each future with its URL futur ... e_to_url = { executor . submit ( load_url , url , 60 ): url for url in URLS } for future ...
https://man.plustar.jp/python/library/concurrent.futures.html - [similar]
What's New in Python 2.6 — Python 3.6.5 ドキュメント 7224
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho ... ts = [ Subscript ( value = Name ( id = 'd' , ctx = Load ()), slice = Index ( value = BinOp ( left = Name ( ... id = 'i' , ctx = Load ()), op = Add (), right = Name ( id = 'i' , ctx = ... p ( left = Call ( func = Name ( id = 'ord' , ctx = Load ()), args = [ Name ( id = 'i' , ctx = Load ()) ], ... ), right = Call ( func = Name ( id = 'ord' , ctx = Load ()), args = [ Str ( s = 'a' ) ], keywords = [], st ...
https://man.plustar.jp/python/whatsnew/2.6.html - [similar]
32.2. ast --- 抽象構文木 — Python 3.6.5 ドキュメント 7073
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ibutes (int lineno, int col_offset) expr_context = Load | Store | Del | AugLoad | AugStore | Param slice = ... n ( Subscript ( value = Name ( id = 'data' , ctx = Load ()), slice = Index ( value = Str ( s = node . id ) ...
https://man.plustar.jp/python/library/ast.html - [similar]
PREV 1 2 3 4 5 NEXT