Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 111 - 120 of about 213 for Return (0.049 sec.)
複素数オブジェクト (complex number object) — Python 3.6.5 ドキュメント 4818
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python/C API リファ ... Object * PyComplex_FromCComplex ( Py_complex v ) ¶ Return value: New reference. C の Py_complex 型から Pytho ... omplex_FromDoubles ( double real , double imag ) ¶ Return value: New reference. 新たな PyComplexObject オブジ ...
https://man.plustar.jp/python/c-api/complex.html - [similar]
拡張と埋め込み FAQ — Python 3.6.5 ドキュメント 4818
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python よくある質問 ... ete ( char * code ) /* code should end in \n */ /* return -1 for error, 0 for incomplete, 1 for complete */ ... e ); if ( n == NULL ) { if ( e . error == E_EOF ) return 0 ; return -1 ; } PyNode_Free ( n ); return 1 ; } ...
https://man.plustar.jp/python/faq/extending.html - [similar]
19.1.6. email.headerregistry: カスタムヘッダーオブジェクト — Python 3.6.5 ドキ... 4818
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... led by application programs: fold ( * , policy ) ¶ Return a string containing linesep characters as required ... hould append any detected defects to this list. On return, the kwds dictionary must contain values for at le ... match name . __getitem__ ( name ) ¶ Construct and return a class to handle creating a name header. __call__ ... or, passing it the same argument list, and finally returns the class instance created thereby. The following ...
https://man.plustar.jp/python/library/email.headerregistry.html - [similar]
18.8. signal --- 非同期イベントにハンドラを設定する — Python 3.6.5 ドキュメント 4818
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... sed by an invalid operation in C code. Python will return from the signal handler to the C code, which is li ... K , SIG_SETMASK ) related constants listed below were turned into enums . getsignal() , pthread_sigmask() , ... sigpending() and sigwait() functions return human-readable enums . 以下に signal モジュールで定 ... signal to be fully processed. The old wakeup fd is returned (or -1 if file descriptor wakeup was not enabled ...
https://man.plustar.jp/python/library/signal.html - [similar]
21.17. smtplib --- SMTP プロトコルクライアント — Python 3.6.5 ドキュメント 4818
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... und using socket.getfqdn() . If the connect() call returns anything other than a success code, an SMTPConnec ... ct() will be called first with no argument. It can return the RFC 4954 "initial response" bytes which will b ... (e.g. because it requires a challenge), it should return None when called with challenge=None . If initial_ ... ed first with None . If the initial response check returns None , or if initial_response_ok is false, authob ...
https://man.plustar.jp/python/library/smtplib.html - [similar]
4. 組み込み型 — Python 3.6.5 ドキュメント 4818
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ip ( '-0b' ) # remove leading zeros and minus sign return len ( s ) # len('100101') --> 6 バージョン 3.1 で追 ... hash_value if hash_value == - 1 : hash_value = - 2 return hash_value def hash_float ( x ): """Compute the ha ... sh of a float x.""" if math . isnan ( x ): return sys . hash_info . nan elif math . isinf ( x ): ret ... . inf if x > 0 else - sys . hash_info . inf else : return hash_fraction ( * x . as_integer_ratio ()) def has ...
https://man.plustar.jp/python/library/stdtypes.html - [similar]
6. 式 (expression) — Python 3.6.5 ドキュメント 4818
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 言語リファレ ... neratorExit (by not catching the exception), close returns to its caller. If the generator yields a value, a ... n an asynchronous generator function is called, it returns an asynchronous iterator known as an asynchronous ... alling one of the asynchronous generator's methods returns an awaitable object, and the execution starts whe ... rst yield expression, where it is suspended again, returning the value of expression_list to the awaiting co ...
https://man.plustar.jp/python/reference/expressions.html - [similar]
型オブジェクト — Python 3.6.5 ドキュメント 4776
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python/C API リファ ... Alloc ( PyTypeObject *type , Py_ssize_t nitems ) ¶ Return value: New reference. 型オブジェクトの tp_alloc に ... Object *type , PyObject *args , PyObject *kwds ) ¶ Return value: New reference. 型オブジェクトの tp_new に対 ...
https://man.plustar.jp/python/c-api/type.html - [similar]
15.1. hashlib --- セキュアハッシュおよびメッセージダイジェスト — Python 3.6.5 ... 4776
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... by the SHAKE algorithm. shake. digest ( length ) ¶ Return the digest of the data passed to the update() meth ... inner_size=0 , last_node=False ) ¶ These functions return the corresponding hash objects for calculating BLA ... , key = SECRET_KEY ) ... h . update ( cookie ) ... return h . hexdigest () . encode ( 'utf-8' ) >>> >>> def ... cookie , sig ): ... good_sig = sign ( cookie ) ... return compare_digest ( good_sig , sig ) >>> >>> cookie = ...
https://man.plustar.jp/python/library/hashlib.html - [similar]
16.1. os --- 雑多なオペレーティングシステムインタフェース — Python 3.6.5 ドキュ... 4776
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... gateescape' error handler, or 'strict' on Windows; return bytes unchanged. fsdecode() はこの逆変換を行う関数 ... gateescape' error handler, or 'strict' on Windows; return str unchanged. fsencode() はこの逆変換を行う関数で ... ar() で取得することができます。 os. getlogin ( ) ¶ Return the name of the user logged in on the controlling ... ile" , os . R_OK ): with open ( "myfile" ) as fp : return fp . read () return "some default data" このコード ...
https://man.plustar.jp/python/library/os.html - [similar]