Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 51 - 60 of about 139 for exception (0.083 sec.)
19.8. binascii --- バイナリデータと ASCII データとの間での変換 — Python 3.6.5 ... 5719
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ません。そうでない場合、例外 Error が送出されます。 exception binascii. Error ¶ エラーが発生した際に送出される例 ... 外です。通常はプログラムのエラーです。 exception binascii. Incomplete ¶ 変換するデータが不完全な場合 ...
https://man.plustar.jp/python/library/binascii.html - [similar]
19.4. mailbox --- 様々な形式のメールボックス操作 — Python 3.6.5 ドキュメント 5719
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... モジュールでは以下の例外クラスが定義されています: exception mailbox. Error ¶ 他の全てのモジュール固有の例外の基 ... 底クラス。 exception mailbox. NoSuchMailboxError ¶ メールボックスがある ... 存在しないフォルダを開こうとした時などに発生します。 exception mailbox. NotEmptyError ¶ メールボックスが空であるこ ... いるフォルダを削除しようとした時などに送出されます。 exception mailbox. ExternalClashError ¶ メールボックスに関係 ...
https://man.plustar.jp/python/library/mailbox.html - [similar]
17.7. queue --- 同期キュークラス — Python 3.6.5 ドキュメント 5719
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ーンは、 (priority_number, data) 形式のタプルです。 exception queue. Empty ¶ 空の Queue オブジェクトで、非ブロッ ... et_nowait() ) が呼ばれたとき、送出される例外です。 exception queue. Full ¶ 満杯の Queue オブジェクトで、非ブロッ ...
https://man.plustar.jp/python/library/queue.html - [similar]
18.8. signal --- 非同期イベントにハンドラを設定する — Python 3.6.5 ドキュメント 5719
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... 追加. signal モジュールは1つの例外を定義しています: exception signal. ItimerError ¶ 背後の setitimer() または ge ... in sigset and the signal handler does not raise an exception (see PEP 475 for the rationale). signal. sigtimedw ... in sigset and the signal handler does not raise an exception (see PEP 475 for the rationale). 18.8.3. 使用例 ¶ ...
https://man.plustar.jp/python/library/signal.html - [similar]
21.21. socketserver --- ネットワークサーバのフレームワーク — Python 3.6.5 ドキ... 5719
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ded handle() method of the handler class raises an exception, the server's handle_error() method will be called ... method of a RequestHandlerClass instance raises an exception. The default action is to print the traceback to s ... quests. バージョン 3.6 で変更: Now only called for exceptions derived from the Exception class. handle_timeout ...
https://man.plustar.jp/python/library/socketserver.html - [similar]
20.10. xml.sax.handler --- SAX ハンドラの基底クラス — Python 3.6.5 ドキュメント 5719
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ラーです。 全てのメソッドは唯一の引数として SAXParseException を受け取ります。 警告とエラーは、渡された例外オブジ ... 外に変換される場合があります。 ErrorHandler. error ( exception ) ¶ パーサが回復可能なエラーに遭遇すると呼び出され ... 見つけることができます。 ErrorHandler. fatalError ( exception ) ¶ パーサが回復不能なエラーに遭遇すると呼び出され ... スの停止が求められています。 ErrorHandler. warning ( exception ) ¶ パーサが軽微な警告情報をアプリケーションに通知 ...
https://man.plustar.jp/python/library/xml.sax.handler.html - [similar]
共通のオブジェクト構造体 (common object structure) — Python 3.6.5 ドキュメント 5659
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python/C API リファ ... turn a new reference on success or NULL with a set exception on failure. set functions take two PyObject* param ... NULL . Should return 0 on success or -1 with a set exception on failure. 関連キーワード: PyObject , オブジェクト ...
https://man.plustar.jp/python/c-api/structures.html - [similar]
Unicode オブジェクトと codec — Python 3.6.5 ドキュメント 5659
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python/C API リファ ... using the given mapping object. Return NULL if an exception was raised by the codec. If mapping is NULL , Lati ... ect. Error handling is "strict". Return NULL if an exception was raised by the codec. The mapping object must m ... rn the result as a bytes object. Return NULL if an exception was raised by the codec. Deprecated since version ... rn the resulting Unicode object. Return NULL if an exception was raised by the codec. The mapping object must m ...
https://man.plustar.jp/python/c-api/unicode.html - [similar]
Logging クックブック — Python 3.6.5 ドキュメント 5659
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python HOWTO » Logg ... れていて、 debug() , info() , warning() , error() , exception() , critical() , log() の各メソッドを呼び出せるよう ... level or filter logic applied - just do it! except Exception : import sys , traceback print ( 'Whoops! Problem: ... て、このように出来ます: import logging class OneLineExceptionFormatter ( logging . Formatter ): def formatExcept ... ion ( self , exc_info ): """ Format an exception so that it prints on a single line. """ result = s ...
https://man.plustar.jp/python/howto/logging-cookbook.html - [similar]
16.9. getpass --- 可搬性のあるパスワード入力機構 — Python 3.6.5 ドキュメント 5659
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ではなく、IDLE を起動したターミナルから行われます。 exception getpass. GetPassWarning ¶ UserWarning のサブクラス ...
https://man.plustar.jp/python/library/getpass.html - [similar]
PREV 1 2 3 4 5 6 7 8 9 10 11 12 13 14 NEXT