Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 141 - 150 of about 213 for return (0.177 sec.)
イテレータプロトコル (iterator protocol) — Python 3.6.5 ドキュメント 4660
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python/C API リファ ... 返します。 PyObject * PyIter_Next ( PyObject *o ) ¶ Return value: New reference. 反復処理 o における次の値を返 ...
https://man.plustar.jp/python/c-api/iter.html - [similar]
共通のオブジェクト構造体 (common object structure) — Python 3.6.5 ドキュメント 4660
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python/C API リファ ... t * ( * getter )( PyObject * , void * ); It should return a new reference on success or NULL with a set exce ... d be deleted the second parameter is NULL . Should return 0 on success or -1 with a set exception on failure ...
https://man.plustar.jp/python/c-api/structures.html - [similar]
19.1.14. email.utils: 多方面のユーティリティ — Python 3.6.5 ドキュメント 4660
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... utils module: email.utils. localtime ( dt=None ) ¶ Return local time as an aware datetime object. If called ... without arguments, return current time. Otherwise dt argument should be a da ... tils. make_msgid ( idstring=None , domain=None ) ¶ Returns a string suitable for an RFC 2822 -compliant Mess ...
https://man.plustar.jp/python/library/email.util.html - [similar]
17.5. subprocess --- サブプロセス管理 — Python 3.6.5 ドキュメント 4660
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... capture output CompletedProcess(args=['ls', '-l'], returncode=0) >>> subprocess . run ( "exit 1" , shell = T ... . subprocess.CalledProcessError : Command 'exit 1' returned non-zero exit status 1 >>> subprocess . run ([ " ... ) CompletedProcess(args=['ls', '-l', '/dev/null'], returncode=0, stdout=b'crw-rw-rw- 1 root root 1, 3 Jan 23 ... された引数。1 個のリストか 1 個の文字列になります。 returncode ¶ 子プロセスの終了コード。一般に、終了ステータ ...
https://man.plustar.jp/python/library/subprocess.html - [similar]
32.7. tokenize --- Pythonソースのためのトークナイザ — Python 3.6.5 ドキュメント 4660
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... all operator and delimiter tokens and Ellipsis are returned using the generic OP token type. The exact type ... hecking the exact_type property on the named tuple returned from tokenize.tokenize() . 32.7.1. 入力のトークナ ... of file objects. Each call to the function should return one line of input as bytes. このジェネレータは次の ... ルド名は type string start end line になります。 The returned named tuple has an additional property named exa ...
https://man.plustar.jp/python/library/tokenize.html - [similar]
8.9. types --- 動的な型生成と組み込み型に対する名前 — Python 3.6.5 ドキュメント 4660
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ormat ( k , self . __dict__ [ k ]) for k in keys ) return " {} ( {} )" . format ( type ( self ) . __name__ , ... , " . join ( items )) def __eq__ ( self , other ): return self . __dict__ == other . __dict__ SimpleNamespac ...
https://man.plustar.jp/python/library/types.html - [similar]
スライスオブジェクト (slice object) — Python 3.6.5 ドキュメント 4618
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python/C API リファ ... bject *start , PyObject *stop , PyObject *step ) ¶ Return value: New reference. 指定した値から新たなスライス ...
https://man.plustar.jp/python/c-api/slice.html - [similar]
32.2. ast --- 抽象構文木 — Python 3.6.5 ドキュメント 4618
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ents args, stmt* body, expr* decorator_list, expr? returns) | AsyncFunctionDef(identifier name, arguments ar ... gs, stmt* body, expr* decorator_list, expr? returns) | ClassDef(identifier name, expr* bases, keyword ... * keywords, stmt* body, expr* decorator_list) | Return(expr? value) | Delete(expr* targets) | Assign(expr ... NodeTransformer ): def visit_Name ( self , node ): return copy_location ( Subscript ( value = Name ( id = 'd ...
https://man.plustar.jp/python/library/ast.html - [similar]
18.5.9. asyncio での開発 — Python 3.6.5 ドキュメント 4618
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... def slow_operation ( fut ): if fut . cancelled (): return # ... slow computation ... yield from fut # ... sh ... le "asyncio/coroutines.py" , line 79 , in __next__ return next ( self . gen ) File "asyncio/coroutines.py" , ...
https://man.plustar.jp/python/library/asyncio-dev.html - [similar]
18.5.6. サブプロセス — Python 3.6.5 ドキュメント 4618
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... t ( ) ¶ プロセスの終了を待ちます。リターンコードが returncode 属性に設定され、返されます。 このメソッドは コ ... たシェルのプロセス識別子になる点に注意してください。 returncode ¶ プロセスが終了したときのリターンコードです。 ... of the protocol data = bytes ( protocol . output ) return data . decode ( 'ascii' ) . rstrip () if sys . pla ... for the subprocess exit yield from proc . wait () return line if sys . platform == "win32" : loop = asyncio ...
https://man.plustar.jp/python/library/asyncio-subprocess.html - [similar]