Python 3.6.5 ドキュメント 検索
Results of 1 - 10 of about 13 for PyExc (0.029 sec.)
- 例外処理 — Python 3.6.5 ドキュメント 14762
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python/C API リファ
...
は例外の型を指定します。通常は標準例外の一つ、例えば PyExc_RuntimeError です。その参照カウントを増加させる必要...
int PyErr_BadArgument ( ) ¶ これは PyErr_SetString(PyExc_TypeError, message) を省略したもので、ここで messa...
¶ Return value: Always NULL. これは PyErr_SetNone(PyExc_MemoryError) を省略したもので、 NULL を返します。し...
ルオブジェクトを構成します。そして、 PyErr_SetObject(PyExc_WindowsError, object) を呼び出します。この関数は常...
- https://man.plustar.jp/python/c-api/exceptions.html - [similar]
- 2. 拡張の型の定義: チュートリアル — Python 3.6.5 ドキュメント 9272
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python インタプリタ
...
{ if ( self -> first == NULL ) { PyErr_SetString ( PyExc_AttributeError , "first" ); return NULL ; } if ( s...
elf -> last == NULL ) { PyErr_SetString ( PyExc_AttributeError , "last" ); return NULL ; } return...
{ if ( self -> first == NULL ) { PyErr_SetString ( PyExc_AttributeError , "first" ); return NULL ; } if ( s...
elf -> last == NULL ) { PyErr_SetString ( PyExc_AttributeError , "last" ); return NULL ; } return...
- https://man.plustar.jp/python/extending/newtypes_tutorial.html - [similar]
- Set オブジェクト — Python 3.6.5 ドキュメント 8621
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python/C API リファ
...
t およびそのサブタイプのオブジェクトでない場合は、 PyExc_SystemError を送出します。 Py_ssize_t PySet_GET_SI...
enset 及びそのサブタイプのオブジェクトで無い場合は PyExc_SystemError を送出します。 int PySet_Add ( PyObjec...
が set かそのサブタイプのインスタンスでないときは、 PyExc_SystemError を送出します。 PyObject * PySet_Pop (...
- https://man.plustar.jp/python/c-api/set.html - [similar]
- Python 3 への拡張モジュール移植 — Python 3.6.5 ドキュメント 8481
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python HOWTO » Pyth
...
r * unused ) { unused = unused ; PyErr_SetString ( PyExc_NotImplementedError , "can't use PyCapsule_SetName...
Module ( trace ); if ( ! object ) { PyErr_Format ( PyExc_ImportError , "PyCapsule_Import could not " "impor...
lue = cobject -> cobject ; } else { PyErr_Format ( PyExc_AttributeError , "PyCapsule_Import \" %s \" is not...
- https://man.plustar.jp/python/howto/cporting.html - [similar]
- 1. C や C++ による Python の拡張 — Python 3.6.5 ドキュメント 8445
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python インタプリタ
...
ブジェクトと C 文字列です。例外オブジェクトは通常、 PyExc_ZeroDivisionError のような定義済みのオブジェクトで...
例外を返すかの選択は、ユーザに完全にゆだねられます。 PyExc_ZeroDivisionError のように、全ての組み込みの Pytho...
なりません --- ファイルが開けなかったことを表すのに PyExc_TypeError を使ったりはしないでください (この場合は...
おそらく PyExc_IOError の方にすべきでしょう)。引数リストに問題があ...
- https://man.plustar.jp/python/extending/extending.html - [similar]
- 3. Defining Extension Types: Assorted Topics — Python 3.6.5 ドキュメント 8305
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python インタプリタ
...
PyLong_FromLong ( obj -> data ); } PyErr_Format ( PyExc_AttributeError , "'%.50s' object has no attribute...
bj , char * name , PyObject * v ) { PyErr_Format ( PyExc_RuntimeError , "Read-only attribute: %s" , name );...
ck ( some_object , & MyType )) { PyErr_SetString ( PyExc_TypeError , "arg #1 not a mything" ); return NULL...
- https://man.plustar.jp/python/extending/newtypes.html - [similar]
- バッファプロトコル (buffer Protocol) — Python 3.6.5 ドキュメント 8217
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python/C API リファ
...
r が指定されたとおりにバッファを提供できない場合、 PyExc_BufferError を送出し、 view->obj を NULL に設定した...
新しい参照を設定し、 0 を返します。 失敗したときは、 PyExc_BufferError を送出し、 view->obj に NULL を設定し、...
- https://man.plustar.jp/python/c-api/buffer.html - [similar]
- 拡張と埋め込み FAQ — Python 3.6.5 ドキュメント 8093
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python よくある質問
...
or or E_EOF? */ else if ( PyErr_ExceptionMatches ( PyExc_SyntaxError )) { PyErr_Fetch ( & exc , & val , & t...
- https://man.plustar.jp/python/faq/extending.html - [similar]
- はじめに — Python 3.6.5 ドキュメント 8041
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python/C API リファ
...
KeyError only: */ if ( ! PyErr_ExceptionMatches ( PyExc_KeyError )) goto error ; /* Clear the error and us...
- https://man.plustar.jp/python/c-api/intro.html - [similar]
- 型オブジェクト — Python 3.6.5 ドキュメント 8005
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python/C API リファ
...
クエストが合致するか確認します。 合致しない場合は、 PyExc_BufferError を送出し、 view->obj に NULL を設定し...
- https://man.plustar.jp/python/c-api/typeobj.html - [similar]