Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 11 - 20 of about 129 for call (0.050 sec.)
6. 式 (expression) — Python 3.6.5 ドキュメント 6835
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 言語リファレ ... ither async for clauses or await expressions it is called an asynchronous comprehension . An asynchronous ... す場合には、丸括弧を省略できます。詳しくは 呼び出し (call) 節を参照してください。 Since Python 3.6, if the g ... ither async for clauses or await expressions it is called an asynchronous generator expression . An asynch ... not catching the exception), close returns to its caller. If the generator yields a value, a RuntimeError ...
https://man.plustar.jp/python/reference/expressions.html - [similar]
初期化 (initialization)、終了処理 (finalization)、スレッド — Python 3.6.5 ドキ... 6725
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python/C API リファ ... were created and not yet destroyed since the last call to Py_Initialize() . Ideally, this frees all memor ... ed by the Python interpreter. This is a no-op when called for a second time (without calling Py_Initialize ... re (); /* Perform Python actions here. */ result = CallSomeFunction (); /* evaluate result or handle excep ... ポインタ引数という形態を取ります。 int Py_AddPendingCall ( int ( *func )(void *), void *arg ) ¶ インタプリタ ...
https://man.plustar.jp/python/c-api/init.html - [similar]
27.1. bdb --- デバッガーフレームワーク — Python 3.6.5 ドキュメント 6725
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... かです: "line" : 新しい行を実行しようとしています。 "call" : 関数が呼び出されているか、別のコードブロックに入 ... としています。 "exception" : 例外が発生しました。 "c_call" : C関数を呼び出そうとしています。 "c_return" : C関 ... ace_dispatch() メソッドの参照を返します。 dispatch_call ( frame , arg ) ¶ デバッガーがこの関数呼び出しで止 ... まるべきであれば、 user_call() メソッド (サブクラスでオーバーライドされる)を呼び ...
https://man.plustar.jp/python/library/bdb.html - [similar]
16.16. ctypes --- Pythonのための外部関数ライブラリ — Python 3.6.5 ドキュメント 6725
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ロードします。それに対して、 windll ライブラリは stdcall 呼び出し規約を用いる関数を呼び出します。 oledll も ... stdcall 呼び出し規約を使いますが、関数が Windows HRESULT エ ... kernel32 . MyOwnFunction ) Traceback (most recent call last): File "<stdin>" , line 1 , in <module> File ... "ctypes.py" , line 239 , in __getattr__ func = _StdcallFuncPtr ( name , self ) AttributeError : function ' ...
https://man.plustar.jp/python/library/ctypes.html - [similar]
8. エラーと例外 — Python 3.6.5 ドキュメント 6725
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python チュートリア ... なります: >>> 10 * ( 1 / 0 ) Traceback (most recent call last): File "<stdin>" , line 1 , in <module> ZeroD ... on by zero >>> 4 + spam * 3 Traceback (most recent call last): File "<stdin>" , line 1 , in <module> NameE ... is not defined >>> '2' + 2 Traceback (most recent call last): File "<stdin>" , line 1 , in <module> TypeE ... ise NameError ( 'HiThere' ) Traceback (most recent call last): File "<stdin>" , line 1 , in <module> NameE ...
https://man.plustar.jp/python/tutorial/errors.html - [similar]
3. Defining Extension Types: Assorted Topics — Python 3.6.5 ドキュメント 6603
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python インタプリタ ... ompatibility) */ hashfunc tp_hash ; ternaryfunc tp_call ; reprfunc tp_str ; getattrofunc tp_getattro ; set ... onst char * tp_doc ; /* Documentation string */ /* call function for all accessible objects */ traversepro ... ct * ) obj ; PyObject * cbresult ; if ( self -> my_callback != NULL ) { PyObject * err_type , * err_value ... err_value , & err_traceback ); cbresult = PyObject_CallObject ( self -> my_callback , NULL ); if ( cbresul ...
https://man.plustar.jp/python/extending/newtypes.html - [similar]
2. 拡張の型の定義: チュートリアル — Python 3.6.5 ドキュメント 6603
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python インタプリタ ... >>> "" + custom . Custom () Traceback (most recent call last): File "<stdin>" , line 1 , in <module> TypeE ... ight happen here if tp_new failed midway). It then calls the tp_free member of the object's type (computed ... tiated) and any arguments passed when the type was called, and is expected to return the instance created. ... __init__ in Python) methods. 注釈 tp_new shouldn't call tp_init explicitly, as the interpreter will do it ...
https://man.plustar.jp/python/extending/newtypes_tutorial.html - [similar]
1. 他のアプリケーションへの Python の埋め込み — Python 3.6.5 ドキュメント 6493
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python インタプリタ ... t i ; if ( argc < 3 ) { fprintf ( stderr , "Usage: call pythonfile funcname [args] \n " ); return 1 ; } Py ... ]); /* pFunc is a new reference */ if ( pFunc && PyCallable_Check ( pFunc )) { pArgs = PyTuple_New ( argc ... etItem ( pArgs , i , pValue ); } pValue = PyObject_CallObject ( pFunc , pArgs ); Py_DECREF ( pArgs ); if ( ... pValue != NULL ) { printf ( "Result of call: %ld \n " , PyLong_AsLong ( pValue )); Py_DECREF ( ...
https://man.plustar.jp/python/extending/embedding.html - [similar]
17.5. subprocess --- サブプロセス管理 — Python 3.6.5 ドキュメント 6493
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... e. When used, the internal Popen object is automatically created with stdin=PIPE , and the stdin argument ... 定した場合、プロセスが非ゼロの終了コードで終了すると CalledProcessError 例外が送出されます。 この例外の属性に ... ell = True , check = True ) Traceback (most recent call last): ... subprocess.CalledProcessError : Command ... rocess. A bytes sequence, or a string if run() was called with an encoding or errors. None if stdout was n ...
https://man.plustar.jp/python/library/subprocess.html - [similar]
Argument Clinic How-To — Python 3.6.5 ドキュメント 6432
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python HOWTO » Argu ... ウトを用意してください。 Find a Python builtin that calls either PyArg_ParseTuple() or PyArg_ParseTupleAndK ... n the future, the first line will be built automatically based on the function's signature.) 例: /*[clinic ... lue at runtime. For now you're going to use what's called a "legacy converter"—a convenience syntax intend ... r sample is unchanged.) If the existing C function calls PyArg_ParseTuple() (as opposed to PyArg_ParseTupl ...
https://man.plustar.jp/python/howto/clinic.html - [similar]
PREV 1 2 3 4 5 6 7 8 9 10 11 NEXT