Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 11 - 20 of about 47 for debug (0.039 sec.)
31.3. modulefinder --- スクリプト中で使われているモジュールを検索する — Python ... 7478
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... す。 class modulefinder. ModuleFinder ( path=None , debug=0 , excludes=[] , replace_paths=[] ) ¶ このクラスで ... です。 path を指定しない場合、 sys.path を使います。 debug にはデバッグレベルを設定します; 値を大きくすると、 ...
https://man.plustar.jp/python/library/modulefinder.html - [similar]
What's New In Python 3.6 — Python 3.6.5 ドキュメント 7478
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho ... at the C level. This will allow for tools such as debuggers and JITs to intercept frame evaluation before ... 設定とデバッグフックの導入ができます。 PYTHONMALLOC=debug を使用してリリースモードでコンパイルされた Python ... so a new feature of Python 3.6. See the PyMem_SetupDebugHooks() function for debug hooks on Python memory a ... alloc . This is helpful when using external memory debuggers like Valgrind on a Python compiled in release ...
https://man.plustar.jp/python/whatsnew/3.6.html - [similar]
36.2. imp --- import 内部へのアクセス — Python 3.6.5 ドキュメント 7418
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ージョン 3.2 で追加. imp. cache_from_source ( path , debug_override=None ) ¶ ソース path に関連付けられたバイ ... が未定義なら NotImplementedError が送出されます)。 debug_override に True あるいは False を渡すことによって ... 、 __debug__ システム値をオーバーライドして最適化されたバイト ... urce() を使用してください。 バージョン 3.5 で変更: debug_override 引数は .pyo ファイルを作成することはもうあ ...
https://man.plustar.jp/python/library/imp.html - [similar]
はじめに — Python 3.6.5 ドキュメント 7357
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python/C API リファ ... 在のところ解放する事ができません。 デバッグ版ビルド (Debugging Builds) ¶ インタプリタと拡張モジュールに対して ... 、この節の残りの部分で説明します。 インタプリタを Py_DEBUG マクロを有効にしてコンパイルすると、一般的に「デバ ... きます。 Unix では、 ./configure コマンドに --with-pydebug を追加することで、 Py_DEBUG が有効になります。その ... 場合、暗黙的にPython専用ではない _DEBUG も有効になります。 Unix ビルドでは、 Py_DEBUG が有 ...
https://man.plustar.jp/python/c-api/intro.html - [similar]
29.6. contextlib --- with 文コンテキスト用ユーティリティ — Python 3.6.5 ドキュ... 7357
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ンテキストマネージャーを省略することができます: def debug_trace ( details ): if __debug__ : return TraceCont ... e context in release mode return ExitStack () with debug_trace (): # Suite is traced in debug mode, but run ...
https://man.plustar.jp/python/library/contextlib.html - [similar]
16.7. logging.config --- ロギングの環境設定 — Python 3.6.5 ドキュメント 7357
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... 。例えば、ロガーやハンドラの level に対する文字列値 'DEBUG' は、自動的に値 logging.DEBUG に変換されますし、 h ... level = NOTSET handlers = hand01 level エントリは DEBUG, INFO, WARNING, ERROR, CRITICAL のうちの一つか、 N ... 以下の例のように表されます。 [logger_parser] level = DEBUG handlers = hand01 propagate = 1 qualname = compile ... さい。 [handler_hand02] class = FileHandler level = DEBUG formatter = form02 args = ('python.log', 'w') [han ...
https://man.plustar.jp/python/library/logging.config.html - [similar]
7. 単純文 (simple statement) — Python 3.6.5 ドキュメント 7357
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 言語リファレ ... assert 文は、プログラム内にデバッグ用アサーション (debugging assertion) を仕掛けるための便利な方法です: ass ... expression ] 単純な形式 assert expression は if __debug__ : if not expression : raise AssertionError と等価 ... t expression1, expression2 は、これと等価です if __debug__ : if not expression1 : raise AssertionError ( ex ... pression2 ) 上記の等価関係は、 __debug__ と AssertionError が、同名の組み込み変数を参照し ...
https://man.plustar.jp/python/reference/simple_stmts.html - [similar]
What's New In Python 3.5 — Python 3.6.5 ドキュメント 7357
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho ... ジュールの重要な変更点: 新たなデバッグ API: loop.set_debug() と loop.get_debug() メソッド。 (Contributed by V ... ethods ( Logger log() , exception() , critical() , debug() , etc.), now accept exception instances as an ex ... This allows meaningful names to be printed during debugging, instead of integer "magic numbers". (Contribu ... ed by Milan Oberkirch in bpo-15014 .) The SMTP.set_debuglevel() method now accepts an additional debuglevel ...
https://man.plustar.jp/python/whatsnew/3.5.html - [similar]
26.3. doctest --- 対話的な実行例をテストする — Python 3.6.5 ドキュメント 7296
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ョンを使うと、失敗の原因を検死デバッグ (post-mortem debug) できます。デフォルトの動作では、実行例の実行を継続 ... 関数がいくつかあります。 DocTestRunner のサブクラス DebugRunner クラスがあります。このクラスは、最初に失敗し ... ocTestSuite() の生成する unittest テストケースは、 debug() メソッドをサポートしています。 debug() は unitte ... 外をコメントにしたスクリプトを出力します。 doctest. debug ( module , name , pm=False ) ¶ オブジェクトの持つ ...
https://man.plustar.jp/python/library/doctest.html - [similar]
11. 標準ライブラリミニツアー --- その 2 — Python 3.6.5 ドキュメント 7296
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python チュートリア ... sys.stderr に送信します: import logging logging . debug ( 'Debugging information' ) logging . info ( 'Info ... error -- shutting down デフォルトでは、 info() と debug() による出力は抑制され、出力は標準エラーに送信され ... への送信などがあります。新たにフィルタを作成すると、 DEBUG 、 INFO 、 WARNING 、 ERROR 、 CRITICAL といったメ ...
https://man.plustar.jp/python/tutorial/stdlib2.html - [similar]
PREV 1 2 3 4 5 NEXT