Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 141 - 150 of about 162 for module (0.135 sec.)
21.15. imaplib --- IMAP4 プロトコルクライアント — Python 3.6.5 ドキュメント 5044
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... rypted socket (to use this class you need a socket module that was compiled with SSL support). If host is no ...
https://man.plustar.jp/python/library/imaplib.html - [similar]
16.6. logging --- Python 用ロギング機能 — Python 3.6.5 ドキュメント 5044
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... matter.format() が呼び出されたときに設定されます。 module %(module)s モジュール ( filename の名前部分)。 mse ...
https://man.plustar.jp/python/library/logging.html - [similar]
21.16. nntplib --- NNTP プロトコルクライアント — Python 3.6.5 ドキュメント 5044
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... コルクライアント ¶ ソースコード: Lib/nntplib.py This module defines the class NNTP which implements the client ...
https://man.plustar.jp/python/library/nntplib.html - [similar]
18.1. socket --- 低水準ネットワークインターフェイス — Python 3.6.5 ドキュメント 5044
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... され、送信時のバッファ長は暗黙的に決まります。 参考 Module socketserver ネットワークサーバの開発を省力化するた ... めのクラス群。 Module ssl ソケットオブジェクトに対する TLS/SSL ラッパー. ...
https://man.plustar.jp/python/library/socket.html - [similar]
21.26. xmlrpc.client --- XML-RPC クライアントアクセス — Python 3.6.5 ドキュメン... 5044
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... named by a URI) and get back structured data. This module supports writing XML-RPC client code; it handles a ...
https://man.plustar.jp/python/library/xmlrpc.client.html - [similar]
4. 実行モデル — Python 3.6.5 ドキュメント 5044
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 言語リファレ ... 自動的に作成されます。スクリプトの主モジュール (main module) は常に __main__ と呼ばれます。 クラス定義ブロック ...
https://man.plustar.jp/python/reference/executionmodel.html - [similar]
11. 標準ライブラリミニツアー --- その 2 — Python 3.6.5 ドキュメント 5044
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python チュートリア ... t recent call last): File "<stdin>" , line 1 , in <module> d [ 'primary' ] # entry was automatically removed ...
https://man.plustar.jp/python/tutorial/stdlib2.html - [similar]
What's New in Python 2.6 — Python 3.6.5 ドキュメント 5044
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho ... t recent call last): File "<stdin>" , line 1 , in <module> TypeError : Can't instantiate abstract class Circ ... トを秒で指定します。 (Added by Facundo Batista.) getmoduleinfo() や getargs() のようなほとんどの inspect モジ ... 631171 , which re-implemented part of the warnings module in C code.) 新しい関数 catch_warnings() はコンテキ ... # to the /tmp directory. z . extract ( 'Python/sysmodule.c' , '/tmp' ) # Unpack all the files in the archiv ...
https://man.plustar.jp/python/whatsnew/2.6.html - [similar]
はじめに — Python 3.6.5 ドキュメント 4998
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python/C API リファ ... れます。第一は、特定用途の 拡張モジュール (extention module) 、すなわち Python インタプリタを拡張する C で書か ... h() の実装を提供しなければなりません (これらは全て Modules/getpath.c で定義されています)。 たまに、 Python を ...
https://man.plustar.jp/python/c-api/intro.html - [similar]
2. setup スクリプトを書く — Python 3.6.5 ドキュメント 4998
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python モジュールの ... した; ここではもうちょっと入り組んだ例を示します: py_modules = [ 'mod1' , 'pkg.mod2' ] ここでは二つのモジュール ... らは全て、もう 1 つの setup() のオプション引数、 ext_modules オプションを通じて行われます。 ext_modules は単な ... nsion setup ( name = 'foo' , version = '1.0' , ext_modules = [ Extension ( 'foo' , [ 'foo.c' ])], ) Extensio ... す。例えば、 setup ( ... , ext_package = 'pkg' , ext_modules = [ Extension ( 'foo' , [ 'foo.c' ]), Extension ( ...
https://man.plustar.jp/python/distutils/setupscript.html - [similar]