Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 31 - 40 of about 79 for info (0.039 sec.)
26.3. doctest --- 対話的な実行例をテストする — Python 3.6.5 ドキュメント 6593
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... _unexpected_exception ( out , test , example , exc_info ) ¶ 与えられた実行例が期待とは違う例外を送出したこ ... てはなりません。 example は処理する実行例です。 exc_info には予期せず送出された例外の情報を入れたタプル ( s ... ys.exc_info() の返す内容) になります。 test は example の入って ... octest. UnexpectedException ( test , example , exc_info ) ¶ doctest 実行例が予期しない例外を送出したことを ...
https://man.plustar.jp/python/library/doctest.html - [similar]
19.1.3. email.generator: MIME 文書の生成 — Python 3.6.5 ドキュメント 6593
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... by a string derived from a template filled in with information about the part. class email.generator. Deco ... nstead of printing it fill in the string fmt using information from the part and print the resulting fille ... d-in string. To fill in fmt , execute fmt % part_info , where part_info is a dictionary composed of the ... does not conform to the RFC standards occasionally information about the exact original text is lost durin ...
https://man.plustar.jp/python/library/email.generator.html - [similar]
10.2. functools --- 高階関数と呼び出し可能オブジェクトの操作 — Python 3.6.5 ド... 6593
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... の調整をしやすくするため、ラップされた関数には cache_info() 関数が追加されます。この関数は hits , misses , m ... ) ... print ( n , len ( pep )) >>> get_pep . cache_info () CacheInfo ( hits = 3 , misses = 8 , maxsize = 3 ... 55 , 89 , 144 , 233 , 377 , 610 ] >>> fib . cache_info () CacheInfo ( hits = 28 , misses = 16 , maxsize = ...
https://man.plustar.jp/python/library/functools.html - [similar]
29.6. contextlib --- with 文コンテキスト用ユーティリティ — Python 3.6.5 ドキュ... 6524
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... logging logging . basicConfig ( level = logging . INFO ) class track_entry_and_exit ( ContextDecorator ): ... lf . name = name def __enter__ ( self ): logging . info ( 'Entering: %s ' , self . name ) def __exit__ ( s ... elf , exc_type , exc , exc_tb ): logging . info ( 'Exiting: %s ' , self . name ) このクラスのインス ...
https://man.plustar.jp/python/library/contextlib.html - [similar]
29.11. gc --- ガベージコレクタインターフェース — Python 3.6.5 ドキュメント 6524
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... るコールバック関数のリスト。コールバックは phase と info の2つの引数で呼び出されます。 phase は以下 2 つのい ... ます。 "stop": ガベージコレクションが終了しました。 info はコールバックに付加情報を提供する辞書です。現在の ...
https://man.plustar.jp/python/library/gc.html - [similar]
16.8. logging.handlers --- ロギングハンドラ — Python 3.6.5 ドキュメント 6524
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... EBUG emerg or panic LOG_EMERG err or error LOG_ERR info LOG_INFO notice LOG_NOTICE warn or warning LOG_WAR ... るかもしれません。デフォルトアルゴリズムは、 DEBUG , INFO , WARNING , ERROR , CRITICAL を等価な syslog 名に、 ... います。この属性は __init__() で初期化され、 DEBUG , INFO , WARNING , ERROR , CRITICAL が入っています。自作の ...
https://man.plustar.jp/python/library/logging.handlers.html - [similar]
16.7. logging.config --- ロギングの環境設定 — Python 3.6.5 ドキュメント 6455
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... : logging.StreamHandler formatter : brief level : INFO filters : [ allow_foo ] stream : ext://sys.stdout ... = NOTSET handlers = hand01 level エントリは DEBUG, INFO, WARNING, ERROR, CRITICAL のうちの一つか、 NOTSET ... ler_hand03] class = handlers.SocketHandler level = INFO formatter = form03 args = ('localhost', handlers.D ...
https://man.plustar.jp/python/library/logging.config.html - [similar]
What's New in Python 2.7 — Python 3.6.5 ドキュメント 6455
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho ... twork.log' , 'formatter' : 'standard' , 'level' : 'INFO' , 'maxBytes' : 1000000 }, 'syslog' : { 'class' : ... があります。テストとデバッグを目的として、 sys.long_info というデータが追加され、内部フォーマットとして dig ... 数の情報を提供します: >>> import sys >>> sys . long_info sys.long_info(bits_per_digit=30, sizeof_digit=4) ( ... ssl.OPENSSL_VERSION (文字列)、 ssl.OPENSSL_VERSION_INFO (5-タプル)、および ssl.OPENSSL_VERSION_NUMBER (整数 ...
https://man.plustar.jp/python/whatsnew/2.7.html - [similar]
29.10. __future__ --- future 文の定義 — Python 3.6.5 ドキュメント 6387
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... は MandatoryRelease より小さく、2つとも sys.version_info と同じフォーマットの5つのタプルからなります: ( PY_ ...
https://man.plustar.jp/python/library/__future__.html - [similar]
What's New in Python 2.1 — Python 3.6.5 ドキュメント 6387
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho ... ドを使ってパッケージ化する Python ソフトウェアに PKG-INFO と名付けられたファイルを含むようにしました。これに ... タデータ) のような情報を含んでいます。PEP 241 が PKG-INFO ファイルに持てるフィールドの完全なリストを記述して ... する upload オプションをサポート出来るでしょう。 PKG-INFO を含んだパッケージの作成は Python 2.1 を使っていな ...
https://man.plustar.jp/python/whatsnew/2.1.html - [similar]
PREV 1 2 3 4 5 6 7 8 NEXT