Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 21 - 30 of about 156 for all (0.061 sec.)
18.5.3. タスクとコルーチン — Python 3.6.5 ドキュメント 6613
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... e propagated). The coroutine expression must be a call to another coroutine. return expression -- produce ... waiting for this one using await or yield from . Calling a coroutine does not start its code running -- ... the coroutine object returned by the call doesn't do anything until you schedule its executi ... on. There are two basic ways to start it running: call await coroutine or yield from coroutine from anoth ...
https://man.plustar.jp/python/library/asyncio-task.html - [similar]
6.2. re --- 正規表現操作 — Python 3.6.5 ドキュメント 6613
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... のモードでは改行以外の任意の文字にマッチします。 DOTALL フラグが指定されていれば改行も含むすべての文字にマ ... (ロケール依存)、 re.M (MULTILINE モード)、 re.S (DOTALL モード)、 re.U (Unicode マッチ)、 re.X (冗長) を設 ... 文字を区別しない), re.M (MULTILINE モード), re.S (DOTALL モード), re.X (冗長) を設定したり除去したりします。 ... itional non-ASCII letters: 'İ' (U+0130, Latin capital letter I with dot above), 'ı' (U+0131, Latin small ...
https://man.plustar.jp/python/library/re.html - [similar]
26.6. unittest.mock --- 入門 — Python 3.6.5 ドキュメント 6613
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... を使うといいでしょう。 モックが呼び出されると、その called 属性が True に設定されます。そして assert_called ... _with() や assert_called_once_with() メソッドを使ってそのメソッドが正しい ... >> real . method () >>> real . something . assert_called_once_with ( 1 , 2 , 3 ) 26.6.1.2. オブジェクトの ... real . closer ( mock ) >>> mock . close . assert_called_with () モックに close メソッドを持たせるために何 ...
https://man.plustar.jp/python/library/unittest.mock-examples.html - [similar]
26.7. 2to3 - Python 2 から 3 への自動コード変換 — Python 3.6.5 ドキュメント 6393
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... uns a set of predefined fixers . The -l flag lists all available fixers. An explicit set of fixers to run ... default fixers, the idioms fixer is run: $ 2to3 -f all -f idioms example.py ここで、 all を指定することで ... e some print statements can be parsed as function calls or statements, 2to3 cannot always read files cont ... as a function. This change can also be enabled manually with the -p flag. Use -p to run fixers on code th ...
https://man.plustar.jp/python/library/2to3.html - [similar]
6. モジュール (module) — Python 3.6.5 ドキュメント 6393
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python チュートリア ... 化されるのは、読み込みにかかる時間だけです。 compileall モジュールを使ってディレクトリ内の全てのモジュール ... ', '_clear_type_cache', '_current_frames', '_debugmallocstats', '_getframe', '_home', '_mercurial', '_xop ... se_prefix', 'builtin_module_names', 'byteorder', 'call_tracing', 'callstats', 'copyright', 'displayhook', ... , '__import__', '__name__', '__package__', 'abs', 'all', 'any', 'ascii', 'bin', 'bool', 'bytearray', 'byt ...
https://man.plustar.jp/python/tutorial/modules.html - [similar]
21.20. uuid --- UUID objects according to RFC 4122 — Python 3.6.5 ドキュメント 6278
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... given, curly braces, hyphens, and a URN prefix are all optional. For example, these expressions all yield ... a separate program, which could be quite slow. If all attempts to obtain the hardware address fail, we c ... 来のために予約されています。 参考 RFC 4122 - Universally Unique IDentifier (UUID) の URN 名前空間 この仕様 ...
https://man.plustar.jp/python/library/uuid.html - [similar]
28.4. zipapp --- 実行可能な python zip 書庫を管理する — Python 3.6.5 ドキュメン... 6278
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... 引数はアーカイブのメインプログラムとして使用する callable の名前を指定します。 main 引数は source がディ ... 、指定することができます。 main 引数は "pkg.module:callable" の形式を取り、 アーカイブは "pkg.module" をイ ... ンポートして実行され、 指定した callable を引数なしで実行します。 source がディレクトリ ... たは target へファイルオブジェクトを指定した場合、 caller が create_archive の呼出し後にオブジェクトを閉じ ...
https://man.plustar.jp/python/library/zipapp.html - [similar]
13.5. zipfile --- ZIP アーカイブの処理 — Python 3.6.5 ドキュメント 6278
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... pFile ( file , mode='r' , compression=ZIP_STORED , allowZip64=True ) ¶ Open a ZIP file, where file can be ... e ). If mode is 'a' and the file does not exist at all, it is created. If mode is 'r' or 'a' , the file s ... imeError is raised. The default is ZIP_STORED . If allowZip64 is True (the default) zipfile will create Z ... with the mode='w' option. バージョン 3.6 で変更: Calling open() on a closed ZipFile will raise a ValueEr ...
https://man.plustar.jp/python/library/zipfile.html - [similar]
21.13. ftplib --- FTPプロトコルクライアント — Python 3.6.5 ドキュメント 6174
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... of the FTP class. When host is given, the method call connect(host) is made. When user is given, additio ... nally the method call login(user, passwd, acct) is made ... ードをサーバから受け取った時に発生する例外。 ftplib. all_errors ¶ FTP インスタンスのメソッド実行時、FTP接続 ... a different port number. This function should be called only once for each instance; it should not be ca ...
https://man.plustar.jp/python/library/ftplib.html - [similar]
21.12. http.client --- HTTP プロトコルクライアント — Python 3.6.5 ドキュメント 6174
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... one of those header fields will be added automatically. If body is None , the Content-Length header is s ... ed, and the Transfer-Encoding header will automatically be set instead of Content-Length. The encode_chun ... is False , the HTTPConnection object assumes that all encoding is handled by the calling code. If it is ... the HTTP server is known to handle HTTP 1.1, the caller must either specify the Content-Length, or must ...
https://man.plustar.jp/python/library/http.client.html - [similar]
PREV 1 2 3 4 5 6 7 8 9 10 11 12 NEXT