Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 41 - 50 of about 95 for check (0.060 sec.)
型オブジェクト — Python 3.6.5 ドキュメント 6385
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python/C API リファ ... Py_TPFLAGS_TYPE_SUBCLASS ¶ これらのフラグは PyLong_Check() のような関数が、型がとある組み込み型のサブクラス ... nature. This slot must be filled for the PyMapping_Check() function to return 1 , it can be NULL otherwise. ... ature. This slot must be filled for the PySequence_Check() function to return 1 , it can be NULL otherwise. ... ばなりません。 つまりこのオブジェクトに対して PyIter_Check() が 1 を返さなければなりません。 オブジェクトが a ...
https://man.plustar.jp/python/c-api/typeobj.html - [similar]
10. API リファレンス — Python 3.6.5 ドキュメント 6385
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python モジュールの ... s ではトリッキーな作業になります。 distutils.util. check_environ ( ) ¶ 'os.environ'に、ユーザがconfigファイ ... は最初にある値を含んでいることをチェックされます: check_environ() を参照。 local_vars or os.environ のどち ... 301 に記述されています。 10.46. distutils.command.check --- パッケージのメタデータをチェックする ¶ check... n Package Indexに登録する 10.46. distutils.command.check --- パッケージのメタデータをチェックする 前のトピッ ...
https://man.plustar.jp/python/distutils/apiref.html - [similar]
What's New In Python 3.6 — Python 3.6.5 ドキュメント 6385
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho ... 端後の書き込み (バッファオーバーフロー) を検知します Check that the GIL is held when allocator functions of P ... MAIN_MEM (ex: PyMem_Malloc() ) domains are called. Checking if the GIL is held is also a new feature of Pyt ... when it cannot find a module. Code that currently checks for ImportError (in try-except) will still work. ... cent Michel.) New Transport.is_closing() method to check if the transport is closing or closed. (Contribute ...
https://man.plustar.jp/python/whatsnew/3.6.html - [similar]
複素数オブジェクト (complex number object) — Python 3.6.5 ドキュメント 6253
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python/C API リファ ... ヤの complex と同じオブジェクトです。 int PyComplex_Check ( PyObject *p ) ¶ 引数が PyComplexObject 型か PyCo ... 型のサブタイプのときに真を返します。 int PyComplex_CheckExact ( PyObject *p ) ¶ 引数が PyComplexObject 型で ...
https://man.plustar.jp/python/c-api/complex.html - [similar]
具象オブジェクト (concrete object) レイヤ — Python 3.6.5 ドキュメント 6253
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python/C API リファ ... えば、あるオブジェクトが辞書型か調べるには、 PyDict_Check() を使います。この章は Python のオブジェクト型にお ...
https://man.plustar.jp/python/c-api/concrete.html - [similar]
Function オブジェクト — Python 3.6.5 ドキュメント 6253
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python/C API リファ ... nctionType として公開されています。 int PyFunction_Check ( PyObject *o ) ¶ o が関数オブジェクト ( PyFunctio ...
https://man.plustar.jp/python/c-api/function.html - [similar]
メモリ管理 — Python 3.6.5 ドキュメント 6253
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python/C API リファ ... 了後の書き込み (バッファオーバーフロー) を検出します Check that the GIL is held when allocator functions of P ... mory block was allocated. The debug hooks now also check if the GIL is held when functions of PYMEM_DOMAIN_ ...
https://man.plustar.jp/python/c-api/memory.html - [similar]
弱参照オブジェクト — Python 3.6.5 ドキュメント 6253
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python/C API リファ ... プロキシとして振舞うオブジェクトです。 int PyWeakref_Check ( ob ) ¶ ob が参照オブジェクトかプロキシオブジェク ... トの場合に真を返します。 int PyWeakref_CheckRef ( ob ) ¶ ob が参照オブジェクトの場合に真を返しま ... す。 int PyWeakref_CheckProxy ( ob ) ¶ ob がプロキシオブジェクトの場合に真を ...
https://man.plustar.jp/python/c-api/weakref.html - [similar]
1. 他のアプリケーションへの Python の埋め込み — Python 3.6.5 ドキュメント 6253
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python インタプリタ ... PyUnicode_DecodeFSDefault ( argv [ 1 ]); /* Error checking of pName left out */ pModule = PyImport_Import ... unc is a new reference */ if ( pFunc && PyCallable_Check ( pFunc )) { pArgs = PyTuple_New ( argc - 3 ); for ... PyUnicode_DecodeFSDefault ( argv [ 1 ]); /* Error checking of pName left out */ pModule = PyImport_Import ... unc is a new reference */ if ( pFunc && PyCallable_Check ( pFunc )) { ... } Py_XDECREF ( pFunc ); ひとたびス ...
https://man.plustar.jp/python/extending/embedding.html - [similar]
21.16. nntplib --- NNTP プロトコルクライアント — Python 3.6.5 ドキュメント 6253
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... バージョン 3.4 で変更: このクラスは ssl.SSLContext.check_hostname と Server Name Indication でホスト名のチェ ... バージョン 3.4 で変更: このメソッドは ssl.SSLContext.check_hostname と Server Name Indication でホスト名のチェ ...
https://man.plustar.jp/python/library/nntplib.html - [similar]
PREV 1 2 3 4 5 6 7 8 9 10 NEXT