Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 41 - 50 of about 213 for Return (0.078 sec.)
例外処理 — Python 3.6.5 ドキュメント 5820
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python/C API リファ ... レッドのエラーインジケータを設定する助けになります。 return 文で使うのに都合が良いように、いくつかの関数は常に ... PyObject *exception , const char *format , ... ) ¶ Return value: Always NULL. この関数はエラーインジケータを ... exception , const char *format , va_list vargs ) ¶ Return value: Always NULL. PyErr_Format() と同じですが、可 ... するためのものです。 PyObject * PyErr_NoMemory ( ) ¶ Return value: Always NULL. これは PyErr_SetNone(PyExc_Mem ...
https://man.plustar.jp/python/c-api/exceptions.html - [similar]
データ整列化 (data marshalling) のサポート — Python 3.6.5 ドキュメント 5820
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python/C API リファ ... ObjectToString ( PyObject *value , int version ) ¶ Return value: New reference. value の整列化表現が入ったバ ... けを読み出せます。 On error, raise an exception and return -1 . int PyMarshal_ReadShortFromFile ( FILE *file ... けを読み出せます。 On error, raise an exception and return -1 . PyObject * PyMarshal_ReadObjectFromFile ( FIL ... E *file ) ¶ Return value: New reference. 読み出し用に開かれた FILE* 内 ...
https://man.plustar.jp/python/c-api/marshal.html - [similar]
DateTime オブジェクト — Python 3.6.5 ドキュメント 5778
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python/C API リファ ... Date_FromDate ( int year , int month , int day ) ¶ Return value: New reference. 指定された年、月、日の datet ... t hour , int minute , int second , int usecond ) ¶ Return value: New reference. 指定された年、月、日、時、分 ... t hour , int minute , int second , int usecond ) ¶ Return value: New reference. 指定された時、分、秒、マイク ... romDSU ( int days , int seconds , int useconds ) ¶ Return value: New reference. 指定された日、秒、マイクロ秒 ...
https://man.plustar.jp/python/c-api/datetime.html - [similar]
Boolean オブジェクト — Python 3.6.5 ドキュメント 5704
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python/C API リファ ... は、他のオブジェクトと同様に扱う必要があります。 Py_RETURN_FALSE ¶ Py_False に適切な参照カウントのインクリメン ... トを行って、関数から返すためのマクロです。 Py_RETURN_TRUE ¶ Py_True に適切な参照カウントのインクリメント ... マクロです。 PyObject * PyBool_FromLong ( long v ) ¶ Return value: New reference. v の値に応じて Py_True または ... PyObject , 関数 , ドキュメント , PyBool , マクロ , RETURN , メソッド 前のトピックへ 整数型オブジェクト (inte ...
https://man.plustar.jp/python/c-api/bool.html - [similar]
弱参照オブジェクト — Python 3.6.5 ドキュメント 5704
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python/C API リファ ... ref_NewRef ( PyObject *ob , PyObject *callback ) ¶ Return value: New reference. ob に対する弱参照オブジェクト ... f_NewProxy ( PyObject *ob , PyObject *callback ) ¶ Return value: New reference. ob に対する弱参照プロキシオブ ... PyObject * PyWeakref_GetObject ( PyObject *ref ) ¶ Return value: Borrowed reference. 弱参照 ref が参照してい ... yObject * PyWeakref_GET_OBJECT ( PyObject *ref ) ¶ Return value: Borrowed reference. PyWeakref_GetObject() に ...
https://man.plustar.jp/python/c-api/weakref.html - [similar]
インスタンスメソッドオブジェクト(Instance Method Objects) — Python 3.6.5 ドキュ... 5662
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python/C API リファ ... PyMethod_New ( PyObject *func , PyObject *self ) ¶ Return value: New reference. 任意の呼び出し可能オブジェク ... PyObject * PyMethod_Function ( PyObject *meth ) ¶ Return value: Borrowed reference. メソッド meth に関連付け ... bject * PyMethod_GET_FUNCTION ( PyObject *meth ) ¶ Return value: Borrowed reference. PyMethod_Function() のマ ... せん。 PyObject * PyMethod_Self ( PyObject *meth ) ¶ Return value: Borrowed reference. メソッド meth に関連付け ...
https://man.plustar.jp/python/c-api/method.html - [similar]
モジュールのインポート — Python 3.6.5 ドキュメント 5619
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python/C API リファ ... ect * PyImport_ImportModule ( const char *name ) ¶ Return value: New reference. この関数は下で述べる PyImpor ... lobals , PyObject *locals , PyObject *fromlist ) ¶ Return value: New reference. モジュールをインポートします ... bject *locals , PyObject *fromlist , int level ) ¶ Return value: New reference. PyImport_ImportModuleLevelOb ... ん。 PyObject * PyImport_Import ( PyObject *name ) ¶ Return value: New reference. 現在の "インポートフック関数 ...
https://man.plustar.jp/python/c-api/import.html - [similar]
8.6. bisect --- 配列二分法アルゴリズム — Python 3.6.5 ドキュメント 5619
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... eft ( a , x ) if i != len ( a ) and a [ i ] == x : return i raise ValueError def find_lt ( a , x ): 'Find ri ... alue less than x' i = bisect_left ( a , x ) if i : return a [ i - 1 ] raise ValueError def find_le ( a , x ) ... n or equal to x' i = bisect_right ( a , x ) if i : return a [ i - 1 ] raise ValueError def find_gt ( a , x ) ... n x' i = bisect_right ( a , x ) if i != len ( a ): return a [ i ] raise ValueError def find_ge ( a , x ): 'F ...
https://man.plustar.jp/python/library/bisect.html - [similar]
21.26. xmlrpc.client --- XML-RPC クライアントアクセス — Python 3.6.5 ドキュメン... 5619
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ag. The following parameters govern the use of the returned proxy instance. If allow_none is true, the Pytho ... み渡すことが出来ます。 bigdecimal decimal.Decimal . Returned type only. 上記のXML-RPCでサポートする全データ型 ... d 31 (except, of course, tab, newline and carriage return); failing to do this will result in an XML-RPC req ... erver import SimpleXMLRPCServer def is_even ( n ): return n % 2 == 0 server = SimpleXMLRPCServer (( "localho ...
https://man.plustar.jp/python/library/xmlrpc.client.html - [similar]
10.3. operator --- 関数形式の標準演算子 — Python 3.6.5 ドキュメント 5577
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ( items ) == 1 : attr = items [ 0 ] def g ( obj ): return resolve_attr ( obj , attr ) else : def g ( obj ): ... ( resolve_attr ( obj , attr ) for attr in items ) return g def resolve_attr ( obj , attr ): for name in att ... r . split ( "." ): obj = getattr ( obj , name ) return obj operator. itemgetter ( item ) ¶ operator. item ... ( items ) == 1 : item = items [ 0 ] def g ( obj ): return obj [ item ] else : def g ( obj ): return tuple ( ...
https://man.plustar.jp/python/library/operator.html - [similar]
PREV 1 2 3 4 5 6 7 8 9 10 11 12 13 14 NEXT