Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 31 - 40 of about 139 for exception (0.031 sec.)
Python で Curses プログラミング — Python 3.6.5 ドキュメント 6125
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python HOWTO » Pyth ... ble is called inside a try ... except that catches exceptions, restores the state of the terminal, and then re- ... raises the exception. Therefore your terminal won't be left in a funny ... state on exception and you'll be able to read the exception's message ... curses.ERR (a value of -1) and getkey() raises an exception. There's also a halfdelay() function, which can be ...
https://man.plustar.jp/python/howto/curses.html - [similar]
10.1. itertools --- 効率的なループ実行のためのイテレータ生成関数 — Python 3.6.5... 6125
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ョンします。およそ次と等価です: class ZipExhausted ( Exception ): pass def zip_longest ( * args , ** kwds ): # zi ... upby ( iterable , key ))) def iter_except ( func , exception , first = None ): """ Call a function repeatedly u ... ntil an exception is raised. Converts a call-until-exception interfa ... ce. Like builtins.iter(func, sentinel) but uses an exception instead of a sentinel to end the loop. Examples: i ...
https://man.plustar.jp/python/library/itertools.html - [similar]
13.1. zlib --- gzip 互換の圧縮 — Python 3.6.5 ドキュメント 6125
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... のモジュールで利用可能な例外と関数を以下に示します: exception zlib. error ¶ 圧縮および展開時のエラーによって送出 ... currently equivalent to level 6). Raises the error exception if any error occurs. バージョン 3.6 で変更: level ... nitial size of the output buffer. Raises the error exception if any error occurs. The wbits parameter controls ... am; using a too-small value may result in an error exception. The default wbits value corresponds to the larges ...
https://man.plustar.jp/python/library/zlib.html - [similar]
18.5.5. ストリーム (コルーチンベースの API) — Python 3.6.5 ドキュメント 6065
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... one ) ¶ このクラスは スレッド安全ではありません 。 exception ( ) ¶ 例外を取得します。 feed_eof ( ) ¶ EOF の肯定 ... 。データを待っているあらゆる処理が再開されます。 set_exception ( exc ) ¶ 例外を設定します。 set_transport ( trans ... に実装されています) 18.5.5.5. IncompleteReadError ¶ exception asyncio. IncompleteReadError ¶ 不完全な読み込みエラ ... 字列 ( bytes ) です。 18.5.5.6. LimitOverrunError ¶ exception asyncio. LimitOverrunError ¶ 区切り文字を探している ...
https://man.plustar.jp/python/library/asyncio-stream.html - [similar]
29.6. contextlib --- with 文コンテキスト用ユーティリティ — Python 3.6.5 ドキュ... 6065
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... age.close() が呼ばれます。 contextlib. suppress ( *exceptions ) ¶ 任意の例外リストを受け取り、with ブロック内で ... ttempts to open files later # in the list raise an exception 各インスタンスは登録されたコールバックのスタックを ... k () try : x = stack . enter_context ( cm ) except Exception : # handle __enter__ exception else : with stack : ... # The validation check passed and didn't raise an exception # Accordingly, we want to keep the resource, and p ...
https://man.plustar.jp/python/library/contextlib.html - [similar]
13.6. tarfile --- tar アーカイブファイルの読み書き — Python 3.6.5 ドキュメント 6065
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... す。 tarfile モジュールは以下の例外を定義しています: exception tarfile. TarError ¶ すべての tarfile 例外のための基 ... 本クラスです。 exception tarfile. ReadError ¶ tar アーカイブがオープンされた ... できないか、あるいは何か無効であるとき送出されます。 exception tarfile. CompressionError ¶ 圧縮方法がサポートされ ... いはデータを正しくデコードできない時に送出されます。 exception tarfile. StreamError ¶ ストリームのような TarFile ...
https://man.plustar.jp/python/library/tarfile.html - [similar]
19.10. uu --- uuencode形式のエンコードとデコード — Python 3.6.5 ドキュメント 6065
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... を真にすることでこの警告を抑制することができます。 exception uu. Error ¶ Exception のサブクラスで、 uu.decode() ...
https://man.plustar.jp/python/library/uu.html - [similar]
What's New In Python 3.0 — Python 3.6.5 ドキュメント 6065
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho ... 理され、 強力な新機能が追加されました: PEP 352 : All exceptions must be derived (directly or indirectly) from Bas ... eException . This is the root of the exception hierarchy. Thi ... mendation, but the requirement to inherit from BaseException is new. (Python 2.6 still allowed classic classes ... n on what you can catch.) As a consequence, string exceptions are finally truly and utterly dead. ほとんど全ての ...
https://man.plustar.jp/python/whatsnew/3.0.html - [similar]
26.3. doctest --- 対話的な実行例をテストする — Python 3.6.5 ドキュメント 5993
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... クでは正しく動作します。 doctest のオプション IGNORE_EXCEPTION_DETAIL を指定した場合、最も左端のコロン以後の全ての ... ch!)" と驚くことになりかねません。 doctest. IGNORE_EXCEPTION_DETAIL ¶ このフラグを指定すると、期待する実行結果に ... するようなテストは、やはり失敗します。また、 IGNORE_EXCEPTION_DETAIL と Python 2.3 の詳細情報を使うことが、例外の ... バージョン 3.2 で変更: doctest モジュールの IGNORE_EXCEPTION_DETAIL フラグが、 テストされている例外を含むモジュ ...
https://man.plustar.jp/python/library/doctest.html - [similar]
26.8. test --- Python 用回帰テストパッケージ — Python 3.6.5 ドキュメント 5993
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... あります。 このモジュールは次の例外を定義しています: exception test.support. TestFailed ¶ テストが失敗したとき送出 ... est.TestCase の assertXXX メソッドが推奨されます。 exception test.support. ResourceDenied ¶ unittest.SkipTest の ... If quiet is False , the context manager raises an exception on error. Otherwise, if path is specified and cann ... y in a buildbot environment. This method raises an exception if the sock.family is AF_INET and sock.type is SOC ...
https://man.plustar.jp/python/library/test.html - [similar]
PREV 1 2 3 4 5 6 7 8 9 10 11 12 13 NEXT