Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 131 - 140 of about 273 for THE (0.201 sec.)
What's New in Python 2.2 — Python 3.6.5 ドキュメント 4581
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho ... lass C ( object ): def f ( self , arg1 , arg2 ): # The actual function ... def pre_f ( self ): # Check pr ... ze ( self , size ): ... compute something based on the size and set internal state appropriately ... # De ... fine a property. The 'delete this attribute' # method is defined as Non ... e, so the attribute # can't be deleted. size = property ( ge ...
https://man.plustar.jp/python/whatsnew/2.2.html - [similar]
型オブジェクト — Python 3.6.5 ドキュメント 4533
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python/C API リファ ... type , * error_value , * error_traceback ; /* Save the current exception, if any. */ PyErr_Fetch ( & erro ... _value , & error_traceback ); /* ... */ /* Restore the saved exception. */ PyErr_Restore ( error_type , e ... y PyMapping_Length() and PyObject_Size() , and has the same signature. This slot may be set to NULL if th ... his function is used by PyObject_GetItem() and has the same signature. This slot must be filled for the P ...
https://man.plustar.jp/python/c-api/typeobj.html - [similar]
What's New In Python 3.0 — Python 3.6.5 ドキュメント 4533
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho ... 置き換えられています ( PEP 3105 )。 例: Old : print "The answer is" , 2 * 2 New : print ( "The answer is" , ... # Prints a newline New : print () # You must call the function! Old : print >> sys . stderr , "fatal err ... prints repr((x, y)) New : print (( x , y )) # Not the same as print(x, y)! 項目間の区切りをカスタマイズす ... ることもできます。例: print ( "There are <" , 2 ** 32 , "> possibilities!" , sep = "" ...
https://man.plustar.jp/python/whatsnew/3.0.html - [similar]
19.1.10. email.mime: メールと MIME オブジェクトを一から作成 — Python 3.6.5 ドキ... 4503
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ソースコード: Lib/email/mime/ This module is part of the legacy ( Compat32 ) email API. Its functionality i ... s partially replaced by the contentmanager in the new API, but in certain appl ... ications these classes may still be useful, even in non-legacy ... に渡されます。 If policy is specified, (defaults to the compat32 policy) it will be passed to Message . MI ...
https://man.plustar.jp/python/library/email.mime.html - [similar]
9. トップレベル要素 — Python 3.6.5 ドキュメント 4503
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 言語リファレ ... す。 Under Unix, a complete program can be passed to the interpreter in three forms: with the -c string com ... mand line option, as a file passed as the first command line argument, or as standard input. ... If the file or standard input is a tty device, the interp ... reter enters interactive mode; otherwise, it executes the file as a complete program. ...
https://man.plustar.jp/python/reference/toplevel_components.html - [similar]
29.10. __future__ --- future 文の定義 — Python 3.6.5 ドキュメント 4484
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... トの5つのタプルからなります: ( PY_MAJOR_VERSION , # the 2 in 2.1.0a3; an int PY_MINOR_VERSION , # the 1; a ... n int PY_MICRO_VERSION , # the 0; an int PY_RELEASE_LEVEL , # "alpha", "beta", "c ... andidate" or "final"; string PY_RELEASE_SERIAL # the 3; an int ) OptionalRelease はその機能が導入された ... Generators division 2.2.0a2 3.0 PEP 238 : Changing the Division Operator absolute_import 2.5.0a1 3.0 PEP ...
https://man.plustar.jp/python/library/__future__.html - [similar]
17.4. concurrent.futures -- 並列タスク実行 — Python 3.6.5 ドキュメント 4474
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ize=1 ) ¶ Similar to map(func, *iterables) except: the iterables are collected immediately rather than la ... nd several calls to func may be made concurrently. The returned iterator raises a concurrent.futures.Time ... outError if __next__() is called and the result isn't available after timeout seconds from ... or a float. If timeout is not specified or None , there is no limit to the wait time. If a func call rai ...
https://man.plustar.jp/python/library/concurrent.futures.html - [similar]
データ整列化 (data marshalling) のサポート — Python 3.6.5 ドキュメント 4455
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python/C API リファ ... bout error detection? It appears that reading past the end of the file will always result in a negative n ... hat negative values won't be handled properly when there's no error. What's the right way to tell? Should ... only non-negative values be written using these routines? long PyMarshal_ReadLongFromFile ( FILE ... から Python オブジェクトを返します。 On error, sets the appropriate exception ( EOFError or TypeError ) an ...
https://man.plustar.jp/python/c-api/marshal.html - [similar]
18.5.5. ストリーム (コルーチンベースの API) — Python 3.6.5 ドキュメント 4435
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... 'Received: %r ' % data . decode ()) print ( 'Close the socket' ) writer . close () message = 'Hello World ... data ) yield from writer . drain () print ( "Close the client socket" ) writer . close () loop = asyncio ... forever () except KeyboardInterrupt : pass # Close the server server . close () loop . run_until_complete ... ine : print ( 'HTTP header> %s ' % line ) # Ignore the body, close the socket writer . close () url = sys ...
https://man.plustar.jp/python/library/asyncio-stream.html - [similar]
2. 字句解析 — Python 3.6.5 ドキュメント 4435
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 言語リファレ ... y an end-of-line sequence. In source files, any of the standard platform line termination sequences can b ... e used - the Unix form using ASCII LF (linefeed), the Windows f ... orm using the ASCII sequence CR LF (return followed by linefeed) ... , or the old Macintosh form using the ASCII CR (return) cha ...
https://man.plustar.jp/python/reference/lexical_analysis.html - [similar]