Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 11 - 20 of about 213 for return (0.046 sec.)
シーケンス型プロトコル (sequence protocol) — Python 3.6.5 ドキュメント 7465
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python/C API リファ ... protocol) ¶ int PySequence_Check ( PyObject *o ) ¶ Return 1 if the object provides sequence protocol, and 0 ... ySequence_Concat ( PyObject *o1 , PyObject *o2 ) ¶ Return value: New reference. 成功すると o1 と o2 の連結 ( ... quence_Repeat ( PyObject *o , Py_ssize_t count ) ¶ Return value: New reference. 成功するとオブジェクト o の ... ce_InPlaceConcat ( PyObject *o1 , PyObject *o2 ) ¶ Return value: New reference. 成功すると o1 と o2 の連結 ( ...
https://man.plustar.jp/python/c-api/sequence.html - [similar]
Argument Clinic How-To — Python 3.6.5 ドキュメント 7465
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python HOWTO » Argu ... コミットする場合は、あとで出てくるもっと強力な機能 ("return converter" や "self converter" など) を使った変換を ... weird. Your code should now look like this: static return_type your_function_impl (...) /*[clinic end genera ... by %s.__init__()" , Py_TYPE ( self ) -> tp_name ); return NULL ; } if ( _Pickler_ClearBuffer ( self ) < 0 ) ... ジェネレータ式 Tuple/list/set/dict literals. Using a return converter ¶ By default the impl function Argument ...
https://man.plustar.jp/python/howto/clinic.html - [similar]
Python 3 への拡張モジュール移植 — Python 3.6.5 ドキュメント 7423
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python HOWTO » Pyth ... yArg_ParseTuple ( args , "U:say_hello" , & name )) return NULL ; result = PyUnicode_FromFormat ( "Hello, %S! ... " , name ); return result ; } /* just a forward */ static char * do_e ... ParseTuple ( args , "O:encode_object" , & myobj )) return NULL ; encoded = do_encode ( myobj ); if ( encoded ... == NULL ) return NULL ; result = PyBytes_FromString ( encoded ); fr ...
https://man.plustar.jp/python/howto/cporting.html - [similar]
19.1.1. email.message: 電子メールメッセージの表現 — Python 3.6.5 ドキュメント 7222
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... gs with some extra methods. Headers are stored and returned in case-preserving form, but field names are mat ... ixfrom=False , maxheaderlen=None , policy=None ) ¶ Return the entire message flattened as a string. When opt ... om is true, the envelope header is included in the returned string. unixfrom defaults to False . For backwar ... ng() . as_bytes ( unixfrom=False , policy=None ) ¶ Return the entire message flattened as a bytes object. Wh ...
https://man.plustar.jp/python/library/email.message.html - [similar]
デスクリプタ HowTo ガイド — Python 3.6.5 ドキュメント 7022
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python HOWTO » デス ... ute__ ( self , key ) if hasattr ( v , '__get__' ): return v . __get__ ( None , self ) return v 憶えておくべき ... ess ( object ): """A data descriptor that sets and returns values normally and prints a message logging thei ... , objtype ): print ( 'Retrieving' , self . name ) return self . val def __set__ ( self , obj , val ): print ... 法を示します: class C ( object ): def getx ( self ): return self . __x def setx ( self , value ): self . __x = ...
https://man.plustar.jp/python/howto/descriptor.html - [similar]
19.1.2. email.parser: 電子メールメッセージのパース — Python 3.6.5 ドキュメント 7022
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... bytes, string or file object, and the parser will return to you the root EmailMessage instance of the objec ... e message. For MIME messages, the root object will return True from its is_multipart() method, and the subpa ... sume and parse the message incrementally, and only returns the root object when you close the parser. Note t ... ave any of the three common line endings: carriage return, newline, or carriage return and newline (they can ...
https://man.plustar.jp/python/library/email.parser.html - [similar]
29.12. inspect --- 活動中のオブジェクトの情報を取得する — Python 3.6.5 ドキュメ... 7022
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... tions__ 仮引数名からアノテーションへのマッピング; "return" キーは return アノテーションに予約されています tr ... 性のみを返します。 inspect. getmodulename ( path ) ¶ Return the name of the module named by the file path , wi ... xes() . If it matches, the final path component is returned with the extension removed. Otherwise, None is r ... eturned. Note that this function only returns a meaningful name for actual Python modules - pat ...
https://man.plustar.jp/python/library/inspect.html - [similar]
16.10. curses --- 文字セル表示を扱うための端末操作 — Python 3.6.5 ドキュメント 6948
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... にします。 curses. color_content ( color_number ) ¶ Return the intensity of the red, green, and blue (RGB) co ... olor_number , which must be between 0 and COLORS . Return a 3-tuple, containing the R,G,B values for the giv ... If the terminal supports the visibility requested, return the previous cursor state; otherwise raise an exce ... 端末を通常の状態に戻します。 curses. erasechar ( ) ¶ Return the user's current erase character as a one-byte b ...
https://man.plustar.jp/python/library/curses.html - [similar]
デスクリプタオブジェクト (descriptor object) — Python 3.6.5 ドキュメント 6864
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python/C API リファ ... yTypeObject *type , struct PyGetSetDef *getset ) ¶ Return value: New reference. PyObject * PyDescr_NewMember ... PyTypeObject *type , struct PyMemberDef *meth ) ¶ Return value: New reference. PyObject * PyDescr_NewMethod ... PyTypeObject *type , struct PyMethodDef *meth ) ¶ Return value: New reference. PyObject * PyDescr_NewWrappe ... , struct wrapperbase *wrapper , void *wrapped ) ¶ Return value: New reference. PyObject * PyDescr_NewClassM ...
https://man.plustar.jp/python/c-api/descriptor.html - [similar]
21.16. nntplib --- NNTP プロトコルクライアント — Python 3.6.5 ドキュメント 6779
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... readermode=None , usenetrc=False [ , timeout ] ) ¶ Return a new NNTP object, representing a connection to th ... readermode=None , usenetrc=False [ , timeout ] ) ¶ Return a new NNTP_SSL object, representing an encrypted c ... be written to. The method will then write any data returned by the server (except for the response line and ... lines, tuples or objects that the method normally returns will be empty. バージョン 3.2 で変更: 以下のメソッ ...
https://man.plustar.jp/python/library/nntplib.html - [similar]
PREV 1 2 3 4 5 6 7 8 9 10 11 NEXT