Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 21 - 30 of about 52 for we (0.052 sec.)
18.5.4. Transports and protocols (callback based API) — Python 3.6.5 ドキュメン... 7124
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... data ): print ( "Received:" , data . decode ()) # We are done: close the transport (it will call connec ... e ()) # Run the event loop loop . run_forever () # We are done, close sockets and the event loop rsock . ...
https://man.plustar.jp/python/library/asyncio-protocol.html - [similar]
29.6. contextlib --- with 文コンテキスト用ユーティリティ — Python 3.6.5 ドキュ... 7124
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... lso has no effect on the output of subprocesses. However, it is still a useful approach for many utility ... assed and didn't raise an exception # Accordingly, we want to keep the resource, and pass it # back to o ... resource def __exit__ ( self , * exc_details ): # We don't need to duplicate any of our resource releas ... ith statement, regardless of where those callbacks were added: >>> from contextlib import ExitStack >>> ...
https://man.plustar.jp/python/library/contextlib.html - [similar]
19.1.9. email.message.Message: Representing an email message using the compat32 ... 7124
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... of certain other methods being slightly different. We also document here some methods that, while suppor ... without decoding the Content-Transfer-Encoding . However, for a Content-Transfer-Encoding of 8bit, an at ... れます。 get_content_disposition ( ) ¶ Return the lowercased value (without parameters) of the message's ... ntent_maintype() == 'multipart' may return False . We can see this in our example by making use of the _ ...
https://man.plustar.jp/python/library/email.compat32-message.html - [similar]
6. Python Package Index (PyPI) — Python 3.6.5 ドキュメント 7034
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python モジュールの ... ーナ (owner) になります。変更は register コマンドか、web インタフェースを介して提出できます。オーナは他のユ ... PyPI はパッケージの最新バージョンしか表示しません。Web インターフェースからこのデフォルトの振る舞いを変更 ... は以下のようなプロンプトを出します: running register We need to know who you are , so please choose either ...
https://man.plustar.jp/python/distutils/packageindex.html - [similar]
18.5.1. 基底イベントループ — Python 3.6.5 ドキュメント 7034
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ( 100 ) print ( "Received:" , data . decode ()) # We are done: unregister the file descriptor loop . re ... e ()) # Run the event loop loop . run_forever () # We are done, close sockets and the event loop rsock . ...
https://man.plustar.jp/python/library/asyncio-eventloop.html - [similar]
25.1. tkinter --- Tcl/Tk の Python インタフェース — Python 3.6.5 ドキュメント 7034
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... d tkinter are available on most Unix platforms, as well as on Windows systems. (Tk itself is not part of ... とって取り立てて役に立つ内容ではありません。 Addison-Wesley は John Ousterhout の書いた Tcl and the Tk Too ... of Tcl. Practical Programming in Tcl and Tk Brent Welch の百科事典のような本です。 25.1.2.2. 簡単な Hel ... gy [ "textvariable" ] = self . contents # and here we get a callback when the user hits return. # we wil ...
https://man.plustar.jp/python/library/tkinter.html - [similar]
32.7. tokenize --- Pythonソースのためのトークナイザ — Python 3.6.5 ドキュメント 7034
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... "e-007" (Windows) and "e-07" (not Windows). Since we're only showing 12 digits, and the 13th isn't clos ...
https://man.plustar.jp/python/library/tokenize.html - [similar]
21.20. uuid --- UUID objects according to RFC 4122 — Python 3.6.5 ドキュメント 7034
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... all attempts to obtain the hardware address fail, we choose a random 48-bit number with its eighth bit ...
https://man.plustar.jp/python/library/uuid.html - [similar]
1. C や C++ による Python の拡張 — Python 3.6.5 ドキュメント 6930
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python インタプリタ ... vorite food of Monty Python fans...) and let's say we want to create a Python interface to the C library ... aracter string as argument and returns an integer. We want this function to be callable from Python as f ... if ( m == NULL ) return NULL ; SpamError = PyErr_NewException ( "spam.error" , NULL , NULL ); Py_INCREF ... spam.error になることに注意してください。 PyErr_NewException() 関数は、 組み込み例外 で述べられている E ...
https://man.plustar.jp/python/extending/extending.html - [similar]
32.2. ast --- 抽象構文木 — Python 3.6.5 ドキュメント 6930
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... perator op, expr value) -- 'simple' indicates that we annotate simple name without parens | AnnAssign(ex ... e) -- need sequences for compare to distinguish between -- x < 4 < 3 and (x < 4) < 3 | Compare(expr left ... | AugLoad | AugStore | Param slice = Slice(expr? lower, expr? upper, expr? step) | ExtSlice(slice* dims) ...
https://man.plustar.jp/python/library/ast.html - [similar]
PREV 1 2 3 4 5 6 NEXT