Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 21 - 30 of about 48 for LOAD (0.091 sec.)
19.2. json --- JSON エンコーダおよびデコーダ — Python 3.6.5 ドキュメント 7073
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... JSON のデコーディング: >>> import json >>> json . loads ( '["foo", {"bar":["baz", null, 1.0, 2]}]' ) ['fo ... o', {'bar': ['baz', None, 1.0, 2]}] >>> json . loads ( '" \\ "foo \\ bar"' ) '"foo\x08ar' >>> from io ... > io = StringIO ( '["streaming API"]' ) >>> json . load ( io ) ['streaming API'] JSON オブジェクトのデコー ... ' ], dct [ 'imag' ]) ... return dct ... >>> json . loads ( '{"__complex__": true, "real": 1, "imag": 2}' , ...
https://man.plustar.jp/python/library/json.html - [similar]
What's New in Python 2.3 — Python 3.6.5 ドキュメント 7073
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho ... core です。 find_module() メソッドは一つのメソッド load_module(fullname) を持つローダーオブジェクトを返さな ... ければなりません。 load_module(fullname) では対応するモジュールオブジェクト ... な詳細は PEP 302 参照): for mp in sys . meta_path : loader = mp ( fullname ) if loader is not None : < modu ... le > = loader . load_module ( fullname ) for path in sys . pat ...
https://man.plustar.jp/python/whatsnew/2.3.html - [similar]
Windows 上の Python FAQ — Python 3.6.5 ドキュメント 6921
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python よくある質問 ... 3.3 であれば "33" のような数字です。 Python には、load-time に、または run-time にリンクできます。load-ti ... ます。全ては実行時に行われます。コードは Windows の LoadLibraryEx() ルーチンで python NN .dll をロードしなけ ...
https://man.plustar.jp/python/faq/windows.html - [similar]
32.1. parser --- Python 解析木にアクセスする — Python 3.6.5 ドキュメント 6921
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... きる関数にまとめることができます: import parser def load_suite ( source_string ): st = parser . suite ( sou ... rce_string ) return st , st . compile () def load_expression ( source_string ): st = parser . expr ( ...
https://man.plustar.jp/python/library/parser.html - [similar]
29.6. contextlib --- with 文コンテキスト用ユーティリティ — Python 3.6.5 ドキュ... 6770
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... しても利用でき: with track_entry_and_exit ( 'widget loader' ): print ( 'Some time consuming activity goes h ... ere' ) load_widget () また関数デコレーターとしても利用できます ... : @track_entry_and_exit ( 'widget loader' ) def activity (): print ( 'Some time consuming ... activity goes here' ) load_widget () コンテキストマネージャーを関数デコレータ ...
https://man.plustar.jp/python/library/contextlib.html - [similar]
26. 開発ツール — Python 3.6.5 ドキュメント 6770
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ループ化 26.4.8.3. テストのロードと起動 26.4.8.3.1. load_tests プロトコル 26.4.9. クラスとモジュールのフィク ...
https://man.plustar.jp/python/library/development.html - [similar]
31.1. zipimport --- Zip アーカイブからモジュールを import する — Python 3.6.5 ... 6770
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ルを見つけられない場合 ZipImportError を送出します。 load_module ( fullname ) ¶ fullname で指定されたモジュー ...
https://man.plustar.jp/python/library/zipimport.html - [similar]
21.14. poplib --- POP3 プロトコルクライアント — Python 3.6.5 ドキュメント 6619
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ed in favor of context . Please use ssl.SSLContext.load_cert_chain() instead, or let ssl.create_default_co ...
https://man.plustar.jp/python/library/poplib.html - [similar]
Pythonモジュール索引 — Python 3.6.5 ドキュメント 6619
ナビゲーション 索引 モジュール | Python » 3.6.5 ドキュメント » Pythonモジュール索引 _ | a | b | ... Parts email.encoders Encoders for email message payloads. email.errors The exception classes used by the e ... llocate ctypes objects from shared memory. n netrc Loading of .netrc files. nis (Unix) Interface to Sun's ... esponse classes used by urllib. urllib.robotparser Load a robots.txt file and answer questions about fetch ...
https://man.plustar.jp/python/py-modindex.html - [similar]
What's New In Python 3.5 — Python 3.6.5 ドキュメント 6619
ナビゲーション 索引 モジュール | 次へ | 前へ | 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 appl ... ted by Brett Cannon in bpo-17621 .) The abc.InspectLoader.source_to_code() method is now a static method. ... nce os.sendfile() function on UNIX, resulting in uploads being from 2 to 3 times faster than when using pl ... のデータを使うようになりました。 unittest ¶ The TestLoader.loadTestsFromModule() method now accepts a keywo ...
https://man.plustar.jp/python/whatsnew/3.5.html - [similar]
PREV 1 2 3 4 5 NEXT