Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 31 - 40 of about 116 for when (0.073 sec.)
用語集 — Python 3.6.5 ドキュメント 6464
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » 用語集 ¶ >>> インタ ... The default Python prompt of the interactive shell when entering code for an indented code block or within ... uding local variables and pending try-statements). When the asynchronous generator iterator effectively re ... ) garbage collection The process of freeing memory when it is not used anymore. Python performs garbage co ... uding local variables and pending try-statements). When the generator iterator resumes, it picks-up where ...
https://man.plustar.jp/python/glossary.html - [similar]
21.13. ftplib --- FTPプロトコルクライアント — Python 3.6.5 ドキュメント 6464
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... s=None ) ¶ Return a new instance of the FTP class. When host is given, the method call connect(host) is ma ... de. When user is given, additionally the method call login( ... (where passwd and acct default to the empty string when not given). The optional timeout parameter specifi ... it should not be called at all if a host was given when the instance was created. All other methods can on ...
https://man.plustar.jp/python/library/ftplib.html - [similar]
21.12. http.client --- HTTP プロトコルクライアント — Python 3.6.5 ドキュメント 6464
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... tatusLine . Raised by HTTPConnection.getresponse() when the attempt to read the response results in no dat ... e HTTPConnection object will be ready to reconnect when a new request is sent. HTTPConnection. set_debugle ... ion. connect ( ) ¶ Connect to the server specified when the object was created. By default, this is called ... automatically when making a request if the client does not already ha ...
https://man.plustar.jp/python/library/http.client.html - [similar]
16.6. logging --- Python 用ロギング機能 — Python 3.6.5 ドキュメント 6464
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... s been set to a higher severity level than level . When a logger is created, the level is set to NOTSET (w ... hich causes all messages to be processed when the logger is the root logger, or delegation to th ... e parent when the logger is a non-root logger). Note that the ro ... how you got to a certain point in your code, even when no exceptions were raised. The stack frames are pr ...
https://man.plustar.jp/python/library/logging.html - [similar]
21.16. nntplib --- NNTP プロトコルクライアント — Python 3.6.5 ドキュメント 6464
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... SError exceptions and to close the NNTP connection when done, e.g.: >>> from nntplib import NNTP >>> with ... hods take an optional keyword-only argument file . When the file argument is supplied, it must be either a ... n to be delayed, you must not set user or password when creating the object, and must set usenetrc to Fals ... use the decode_header() function on header values when they may contain non-ASCII characters: >>> _ , _ , ...
https://man.plustar.jp/python/library/nntplib.html - [similar]
What's New In Python 3.5 — Python 3.6.5 ドキュメント 6464
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho ... to allow batching of tasks to improve performance when ProcessPoolExecutor() is used. (Contributed by Dan ... 4 .) dbm ¶ dumb.open always creates a new database when the flag has the value "n" . (Contributed by Claud ... sponse() now raises a RemoteDisconnected exception when a remote server connection is closed unexpectedly. ... a follow_wrapped optional keyword argument, which, when set to False , disables automatic following of __w ...
https://man.plustar.jp/python/whatsnew/3.5.html - [similar]
6.7. readline --- GNU readline のインタフェース — Python 3.6.5 ドキュメント 6364
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... Enable or disable automatic calls to add_history() when reading input via readline. The enabled argument s ... hould be a Boolean value that when true, enables auto history, and that when false, d ...
https://man.plustar.jp/python/library/readline.html - [similar]
35.6. termios --- POSIX スタイルの端末制御 — Python 3.6.5 ドキュメント 6364
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... て行わなければなりません。 termios. tcsetattr ( fd , when , attributes ) ¶ ファイル記述子 fd の端末属性を at ... ibutes は tcgetattr() が返すようなリストです。引数 when は属性がいつ変更されるかを決定します: TCSANOW は即 ...
https://man.plustar.jp/python/library/termios.html - [similar]
21.26. xmlrpc.client --- XML-RPC クライアントアクセス — Python 3.6.5 ドキュメン... 6364
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... he remote server as part of the connection process when invoking an XML-RPC method. You only need to use t ... ラスのインスタンスをマーシャルすることはできません。 When passing strings, characters special to XML such as ... cation, as well as hint at 'best practices' to use when designing your own XML-RPC implementations." 21.26 ... ich was the de facto standard base64 specification when the XML-RPC spec was written. また、 __eq__() およ ...
https://man.plustar.jp/python/library/xmlrpc.client.html - [similar]
19.1.7. email.contentmanager: MIME 内容の管理 — Python 3.6.5 ドキュメント 6264
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... handler ) ¶ Record handler as the function to call when an object of a type matching typekey is passed to ... d errors is specified, use it as the error handler when decoding the payload to unicode. The default error ...
https://man.plustar.jp/python/library/email.contentmanager.html - [similar]
PREV 1 2 3 4 5 6 7 8 9 10 11 12 NEXT