Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 61 - 70 of about 150 for Function (0.095 sec.)
21.13. ftplib --- FTPプロトコルクライアント — Python 3.6.5 ドキュメント 5517
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ly needed to specify a different port number. This function should be called only once for each instance; it s ... riate RETR command: 'RETR filename' . The callback function is called for each block of data received, with a ... NLST retrieves a list of file names. The callback function is called for each line with a string argument con ...
https://man.plustar.jp/python/library/ftplib.html - [similar]
21.16. nntplib --- NNTP プロトコルクライアント — Python 3.6.5 ドキュメント 5517
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... object initialization and separately calling this function is unnecessary. To force authentication to be dela ... resent. It is advisable to use the decode_header() function on header values when they may contain non-ASCII c ... bject. The unescaped value is returned. Using this function is recommended to display some headers in a human ...
https://man.plustar.jp/python/library/nntplib.html - [similar]
27.4. Python プロファイラ — Python 3.6.5 ドキュメント 5517
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... 行して、プロファイル結果を次のように表示します: 197 function calls ( 192 primitive calls ) in 0.002 seconds Ord ... ottime percall cumtime percall filename : lineno ( function ) 1 0.000 0.000 0.001 0.001 < string > : 1 ( < mod ... 0.000 0.000 0.000 sre_compile . py : 25 ( _identityfunction ) 3 / 1 0.000 0.000 0.000 0.000 sre_compile . py : ... 回数 tottime 与えられた関数に消費された合計時間 (sub-function の呼び出しで消費された時間は除外されています) perc ...
https://man.plustar.jp/python/library/profile.html - [similar]
循環参照ガベージコレクションをサポートする — Python 3.6.5 ドキュメント 5471
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python/C API リファ ... p_traverse ハンドラに渡されるビジター関数 (visitor function) の型です。この関数は、探索するオブジェクトを obje ... テナオブジェクトのためのトラバーサル関数 (traversal function) です。実装では、 self に直接入っている各オブジェク ...
https://man.plustar.jp/python/c-api/gcsupport.html - [similar]
17.9. _thread --- 低水準の スレッド API — Python 3.6.5 ドキュメント 5471
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ブジェクトのタイプです。 _thread. start_new_thread ( function , args [ , kwargs ] ) ¶ 新しいスレッドを開始して、 ... は引数リスト args (タプルでなければなりません)の関数 function を実行します。オプション引数 kwargs はキーワード引 ...
https://man.plustar.jp/python/library/_thread.html - [similar]
21.21. socketserver --- ネットワークサーバのフレームワーク — Python 3.6.5 ドキ... 5471
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... the socket on which the server is listening. This function is most commonly passed to selectors , to allow mo ... andle_request ( ) ¶ Process a single request. This function calls the following methods in order: get_request( ... 。 handle_error ( request , client_address ) ¶ This function is called if the handle() method of a RequestHandl ...
https://man.plustar.jp/python/library/socketserver.html - [similar]
27.7. tracemalloc --- メモリ割り当ての追跡 — Python 3.6.5 ドキュメント 5471
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... t1 = tracemalloc . take_snapshot () # ... call the function leaking memory ... snapshot2 = tracemalloc . take_ ... _traceback_limit() frames. See the take_snapshot() function. The Trace.traceback attribute is an instance of T ... ecent frames. Similar to the traceback.format_tb() function, except that format() does not include newlines. 以 ...
https://man.plustar.jp/python/library/tracemalloc.html - [similar]
26.4. unittest --- ユニットテストフレームワーク — Python 3.6.5 ドキュメント 5471
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... スを作成するには TestCase のサブクラスを記述するか、 FunctionTestCase を使用しなければなりません。 TestCase イン ... な場合は、 unittest では TestCase のサブクラスである FunctionTestCase クラスを使い、既存のテスト関数をラップしま ... タンスは次のように作成します: testcase = unittest . FunctionTestCase ( testSomething , setUp = makeSomethingDB ... , tearDown = deleteSomethingDB ) 注釈 FunctionTestCase を使って既存のテストを unittest ベースのテ ...
https://man.plustar.jp/python/library/unittest.html - [similar]
21.4. wsgiref --- WSGI ユーティリティとリファレンス実装 — Python 3.6.5 ドキュメ... 5471
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... unicode" strings, returning a new dictionary. This function is used by CGIHandler and IISCGIHandler in place o ... rguments. For that purpose, we're going to # use a function (note that you're not limited to a function, you c ... ass for example). The first argument passed to the function # is a dictionary containing CGI-style environment ...
https://man.plustar.jp/python/library/wsgiref.html - [similar]
Python 2 から Python 3 への移植 — Python 3.6.5 ドキュメント 5424
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python HOWTO » Pyth ... ) for opening files instead of the built-in open() function as the io module is consistent from Python 2 to 3 ... while the built-in open() function is not (in Python 3 it's actually io.open() ). Do ... ure__ import division from __future__ import print_function 実行時に種々の互換性問題を警告してもらうために Pyt ... al or binary data, helping to make sure everything functions as expected in both versions of Python. 関連キーワ ...
https://man.plustar.jp/python/howto/pyporting.html - [similar]
PREV 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 NEXT