Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 41 - 50 of about 99 for except (0.021 sec.)
29.8. atexit --- 終了ハンドラ — Python 3.6.5 ドキュメント 6270
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... le" ) as infile : _count = int ( infile . read ()) except FileNotFoundError : _count = 0 def incrcounter ( n ...
https://man.plustar.jp/python/library/atexit.html - [similar]
36.2. imp --- import 内部へのアクセス — Python 3.6.5 ドキュメント 6270
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... トし、その初期化を飛ばすことができます: try : cache except NameError : cache = {} ビルトインのモジュールや動的 ... been imported. try : return sys . modules [ name ] except KeyError : pass # If any of the following calls ra ... ises an exception, # there's a problem we can't handle -- let the ... description ) finally : # Since we may exit via an exception, close fp explicitly. if fp : fp . close () 関連 ...
https://man.plustar.jp/python/library/imp.html - [similar]
21.17. smtplib --- SMTP プロトコルクライアント — Python 3.6.5 ドキュメント 6270
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... きます。 このモジュールの例外には次のものがあります: exception smtplib. SMTPException ¶ OSError の派生クラスで ... の例外の基底クラスです。 バージョン 3.4 で変更: SMTPException が OSError の派生クラスになりました。 exception ... スを生成する前に接続しようとした場合に送出されます。 exception smtplib. SMTPResponseException ¶ SMTPのエラーコ ... mtp_error 属性にはエラーメッセージが格納されます。 exception smtplib. SMTPSenderRefused ¶ 送信者のアドレスが ...
https://man.plustar.jp/python/library/smtplib.html - [similar]
21.21. socketserver --- ネットワークサーバのフレームワーク — Python 3.6.5 ドキ... 6270
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ded handle() method of the handler class raises an exception, the server's handle_error() method will be cal ... method of a RequestHandlerClass instance raises an exception. The default action is to print the traceback t ... quests. バージョン 3.6 で変更: Now only called for exceptions derived from the Exception class. handle_timeo ... This class works similar to the TCP handler class, except that self.request consists of a pair of data and c ...
https://man.plustar.jp/python/library/socketserver.html - [similar]
29.9. traceback --- スタックトレースの表示または取得 — Python 3.6.5 ドキュメン... 6270
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... 負の limit がサポートされました。 traceback. print_exception ( etype , value , tb , limit=None , file=None , ... xc ( limit=None , file=None , chain=True ) ¶ print_exception(*sys.exc_info(), limit, file, chain) の省略表現 ... st ( limit=None , file=None , chain=True ) ¶ print_exception(sys.last_type, sys.last_value, sys.last_traceba ... に改行を含んでいるかもしれません。 traceback. format_exception_only ( etype , value ) ¶ トレースバックの例外部 ...
https://man.plustar.jp/python/library/traceback.html - [similar]
11. 標準ライブラリミニツアー --- その 2 — Python 3.6.5 ドキュメント 6270
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python チュートリア ... >>> doc = """The wrap() method is just like fill() except that it returns ... a list of strings instead of o ... idth = 40 )) The wrap() method is just like fill() except that it returns a list of strings instead of one b ...
https://man.plustar.jp/python/tutorial/stdlib2.html - [similar]
16.5. getopt --- C 言語スタイルのコマンドラインオプションパーサ — Python 3.6.5 ... 6178
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... と解析を停止するように振舞いを変えることができます。 exception getopt. GetoptError ¶ 引数リストの中に認識できな ... オプションが無い場合には opt は空文字列となります。 exception getopt. error ¶ GetoptError へのエイリアスです。 ... ys . argv [ 1 :], "ho:v" , [ "help" , "output=" ]) except getopt . GetoptError as err : # print help informa ...
https://man.plustar.jp/python/library/getopt.html - [similar]
16. 付録 — Python 3.6.5 ドキュメント 6178
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python チュートリア ... 後、非ゼロの終了ステータスで終了します。 ( try 文の except 節で処理された例外は、ここでいうエラーにはあたりま ...
https://man.plustar.jp/python/tutorial/appendix.html - [similar]
はじめに — Python 3.6.5 ドキュメント 6087
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python/C API リファ ... に明示的にドキュメント化されます。 例外時の状態情報 (exception state)は、スレッド単位に用意された記憶領域 (per ... thon における例外オブジェクトは、Python の try ... except 文で最近処理したオブジェクトを表す一方、 C レベルの ... cr_item ( dict , key ) : try : item = dict [ key ] except KeyError : item = 0 dict [ key ] = item + 1 以下は ... NULL ) { /* Handle KeyError only: */ if ( ! PyErr_ExceptionMatches ( PyExc_KeyError )) goto error ; /* Clea ...
https://man.plustar.jp/python/c-api/intro.html - [similar]
1. Distutilsの紹介 — Python 3.6.5 ドキュメント 6087
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python モジュールの ... ary), or mxBase. (This would be called a package , except that term is already taken in the Python context: ...
https://man.plustar.jp/python/distutils/introduction.html - [similar]
PREV 1 2 3 4 5 6 7 8 9 10 NEXT