Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 81 - 90 of about 213 for Return (0.083 sec.)
What's New in Python 2.5 — Python 3.6.5 ドキュメント 5177
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho ... gs , ** kwds ): print 'Calling decorated function' return f ( * args , ** kwds ) functools . update_wrapper ... ( wrapper , f ) return wrapper wraps() は、ラップされる関数についての情報 ... gs , ** kwds ): print 'Calling decorated function' return f ( * args , ** kwds ) return wrapper 参考 PEP 309 ... ルーチンは一カ所 (関数の冒頭) から入って別の一カ所 ( return 文) から出るだけですが、コルーチンはいろいろな場所 ...
https://man.plustar.jp/python/whatsnew/2.5.html - [similar]
初期化 (initialization)、終了処理 (finalization)、スレッド — Python 3.6.5 ドキ... 5134
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python/C API リファ ... calling Py_Initialize() again first). Normally the return value is 0 . If there were errors during finalizat ... ion (flushing buffered data), -1 is returned. この関数が提供されている理由はいくつかあります。 ... なりません。 PyObject * PyThreadState_GetDict ( ) ¶ Return value: Borrowed reference. 拡張モジュールがスレッド ... _CALL , PyTrace_EXCEPTION , PyTrace_LINE , PyTrace_RETURN , PyTrace_C_CALL , PyTrace_C_EXCEPTION , あるいは ...
https://man.plustar.jp/python/c-api/init.html - [similar]
19.1.9. email.message.Message: Representing an email message using the compat32 ... 5134
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... roduce the correct results. Headers are stored and returned in case-preserving form, but field names are mat ... unixfrom=False , maxheaderlen=0 , 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 ... ります。 as_bytes ( unixfrom=False , policy=None ) ¶ Return the entire message flattened as a bytes object. Wh ...
https://man.plustar.jp/python/library/email.compat32-message.html - [similar]
19.1.4. email.policy: ポリシーオブジェクト — Python 3.6.5 ドキュメント 5134
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ame keyword arguments as the class constructor and returning a new Policy instance that is a copy of the ori ... y instances with custom settings: clone ( **kw ) ¶ Return a new Policy instance whose attributes have the sa ... added to an EmailMessage or Message object. If the returned value is not 0 or None , and there are already a ... h the name name greater than or equal to the value returned, a ValueError is raised. Because the default beh ...
https://man.plustar.jp/python/library/email.policy.html - [similar]
29.7. abc --- 抽象基底クラス — Python 3.6.5 ドキュメント 5103
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... f __len__ ( self ): ... def get_iterator ( self ): return iter ( self ) class MyIterable ( ABC ): @abstractm ... hile False : yield None def get_iterator ( self ): return self . __iter__ () @classmethod def __subclasshook ... "__iter__" in B . __dict__ for B in C . __mro__ ): return True return NotImplemented MyIterable . register ( ... : ... @property def __isabstractmethod__ ( self ): return any ( getattr ( f , '__isabstractmethod__' , False ...
https://man.plustar.jp/python/library/abc.html - [similar]
19.1.3. email.generator: MIME 文書の生成 — Python 3.6.5 ドキュメント 5103
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... om_=None , maxheaderlen=None , * , policy=None ) ¶ Return a BytesGenerator object that will write any messag ... the value specified in the policy . clone ( fp ) ¶ Return an independent clone of this BytesGenerator instan ... om_=None , maxheaderlen=None , * , policy=None ) ¶ Return a Generator object that will write any message pro ... した。 linesep 引数が追加されました。 clone ( fp ) ¶ Return an independent clone of this Generator instance wi ...
https://man.plustar.jp/python/library/email.generator.html - [similar]
What's New In Python 3.6 — Python 3.6.5 ドキュメント 5103
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho ... ntField : def __get__ ( self , instance , owner ): return instance . __dict__ [ self . name ] def __set__ ( ... provided those bytes are encoded with the encoding returned by sys.getfilesystemencoding() , which now defau ... , the effective default class execution namespace (returned from type.__prepare__() ) is now an insertion-or ... t_event_loop() function has been changed to always return the currently running loop when called from courou ...
https://man.plustar.jp/python/whatsnew/3.6.html - [similar]
メモリ管理 — Python 3.6.5 ドキュメント 5061
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python/C API リファ ... alloc ( BUFSIZ ); /* for I/O */ if ( buf == NULL ) return PyErr_NoMemory (); ... Do some I / O operation inv ... _FromString ( buf ); free ( buf ); /* malloc'ed */ return res ; この例では、I/O バッファに対するメモリ要求は ... emory block pointed to by p , which must have been returned by a previous call to PyMem_RawMalloc() , PyMem_ ... 失敗した場合 NULL を返します。 Requesting zero bytes returns a distinct non- NULL pointer if possible, as if P ...
https://man.plustar.jp/python/c-api/memory.html - [similar]
21.27. xmlrpc.server --- 基本的なXML-RPCサーバー — Python 3.6.5 ドキュメント 5061
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... der a different name def adder_function ( x , y ): return x + y server . register_function ( adder_function ... 'mul'). class MyFuncs : def mul ( self , x , y ): return x * y server . register_instance ( MyFuncs ()) # R ... p://localhost:8000' ) print ( s . pow ( 2 , 3 )) # Returns 2**3 = 8 print ( s . add ( 2 , 3 )) # Returns 5 p ... rint ( s . mul ( 5 , 2 )) # Returns 5*2 = 10 # Print list of available methods print ...
https://man.plustar.jp/python/library/xmlrpc.server.html - [similar]
2. 字句解析 — Python 3.6.5 ドキュメント 5061
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 言語リファレ ... , the Windows form using the ASCII sequence CR LF (return followed by linefeed), or the old Macintosh form u ... sing the ASCII CR (return) character. All of these forms can be used equally ... 0 and 0 <= second < 60 : # Looks like a valid date return 1 バックスラッシュで終わる行にはコメントを入れるこ ... list of all permutations of l if len ( l ) <= 1 : return [ l ] r = [] for i in range ( len ( l )): s = l [: ...
https://man.plustar.jp/python/reference/lexical_analysis.html - [similar]