Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 131 - 140 of about 171 for new (0.117 sec.)
16.8. logging.handlers --- ロギングハンドラ — Python 3.6.5 ドキュメント 4932
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ます。 ファイルはログファイルをローテーションさせる newsyslog や logrotate のようなプログラムを使うことで変 ... is about to be exceeded, the file is closed and a new file is silently opened for output. Rollover occur ... 注釈 Calculation of the initial rollover time is done when the handler is initialised. Calculation of sub ... tp LOG_FTP kern LOG_KERN lpr LOG_LPR mail LOG_MAIL news LOG_NEWS syslog LOG_SYSLOG user LOG_USER uucp LOG ...
https://man.plustar.jp/python/library/logging.handlers.html - [similar]
27.6. trace --- Python 文実行のトレースと追跡 — Python 3.6.5 ドキュメント 4932
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... . exec_prefix ], trace = 0 , count = 1 ) # run the new command using the given tracer tracer . run ( 'mai ...
https://man.plustar.jp/python/library/trace.html - [similar]
8.9. types --- 動的な型生成と組み込み型に対する名前 — Python 3.6.5 ドキュメント 4932
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... くつか提供しています。 8.9.1. 動的な型生成 ¶ types. new_class ( name , bases=() , kwds=None , exec_body=No ...
https://man.plustar.jp/python/library/types.html - [similar]
21.4. wsgiref --- WSGI ユーティリティとリファレンス実装 — Python 3.6.5 ドキュメ... 4932
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... or ( application ) ¶ Wrap application and return a new WSGI application object. The returned application ... o PEP 3333 "bytes in unicode" strings, returning a new dictionary. This function is used by CGIHandler an ...
https://man.plustar.jp/python/library/wsgiref.html - [similar]
20.5. xml.etree.ElementTree --- ElementTree XML API — Python 3.6.5 ドキュメント 4932
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... い場合: >>> for rank in root . iter ( 'rank' ): ... new_rank = int ( rank . text ) + 1 ... rank . text = s ... tr ( new_rank ) ... rank . set ( 'updated' , 'yes' ) ... >> ...
https://man.plustar.jp/python/library/xml.etree.elementtree.html - [similar]
初期化 (initialization)、終了処理 (finalization)、スレッド — Python 3.6.5 ドキ... 4887
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python/C API リファ ... unctions, and destroy all sub-interpreters (see Py_NewInterpreter() below) that were created and not yet ... すると仮定する事に気をつけて下さい。 Python は ( Py_NewInterpreter() を使って) 追加のインタプリタを作成でき ... なりません。 PyInterpreterState * PyInterpreterState_New ( ) ¶ 新しいインタプリタ状態オブジェクトを生成しま ... かなければなりません。 PyThreadState * PyThreadState_New ( PyInterpreterState *interp ) ¶ 指定したインタプリ ...
https://man.plustar.jp/python/c-api/init.html - [similar]
5. ビルド済み配布物を作成する — Python 3.6.5 ドキュメント 4887
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python モジュールの ... not; or it could be software periodically grabbing new source distributions and turning them into built d ...
https://man.plustar.jp/python/distutils/builtdist.html - [similar]
用語集 — Python 3.6.5 ドキュメント 4887
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » 用語集 ¶ >>> インタ ... file objects , and objects of any classes you define with an __iter__() method or with a __getitem__() m ... み書きします。 nonlocal で外側の変数に書き込めます。 new-style class (新スタイルクラス) 今では全てのクラスオ ... もつ全てのデータ。もしくは、全ての新スタイルクラス ( new-style class ) の究極の基底クラスのこと。 package ( ... したり、 type(obj) で取得したり出来ます。 universal newlines テキストストリームの解釈法の一つで、以下のすべ ...
https://man.plustar.jp/python/glossary.html - [similar]
正規表現 HOWTO — Python 3.6.5 ドキュメント 4887
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python HOWTO » 正規 ... n this section is . . It matches anything except a newline character, and there's an alternate mode ( re. ... DOTALL ) where it will match even a newline. . is often used where you want to match "any ... r [bcd]* , and if that subsequently fails, the engine will conclude that the string doesn't match the RE ... 。 DOTALL , S Make . match any character, including newlines. IGNORECASE , I Do case-insensitive matches. ...
https://man.plustar.jp/python/howto/regex.html - [similar]
26.7. 2to3 - Python 2 から 3 への自動コード変換 — Python 3.6.5 ドキュメント 4887
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... _ に変換されます。 future ¶ from __future__ import new_feature 文を削除します。 getcwdu ¶ os.getcwdu() を ...
https://man.plustar.jp/python/library/2to3.html - [similar]