Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 71 - 80 of about 99 for except (0.096 sec.)
13.1. zlib --- gzip 互換の圧縮 — Python 3.6.5 ドキュメント 5996
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... のモジュールで利用可能な例外と関数を以下に示します: exception zlib. error ¶ 圧縮および展開時のエラーによって送 ... currently equivalent to level 6). Raises the error exception if any error occurs. バージョン 3.6 で変更: lev ... nitial size of the output buffer. Raises the error exception if any error occurs. The wbits parameter contro ... am; using a too-small value may result in an error exception. The default wbits value corresponds to the lar ...
https://man.plustar.jp/python/library/zlib.html - [similar]
6. 式 (expression) — Python 3.6.5 ドキュメント 5996
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 言語リファレ ... osed, or raises GeneratorExit (by not catching the exception), close returns to its caller. If the generator ... Error is raised. If the generator raises any other exception, it is propagated to the caller. close() does n ... hing if the generator has already exited due to an exception or normal exit. 6.2.9.2. 使用例 ¶ 以下の簡単なサ ... e True : ... try : ... value = ( yield value ) ... except Exception as e : ... value = e ... finally : ... p ...
https://man.plustar.jp/python/reference/expressions.html - [similar]
5. インポートシステム — Python 3.6.5 ドキュメント 5996
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 言語リファレ ... odule try : spec . loader . exec_module ( module ) except BaseException : try : del sys . modules [ spec . n ... ame ] except KeyError : pass raise return sys . modules [ spec ...
https://man.plustar.jp/python/reference/import.html - [similar]
What's New in Python 2.2 — Python 3.6.5 ドキュメント 5996
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho ... 特定しているのは、同じく 2.5 の PEP 341 によって try/except/finally の一体化されるまでは、 finally の try と e ...
https://man.plustar.jp/python/whatsnew/2.2.html - [similar]
What's New In Python 3.6 — Python 3.6.5 ドキュメント 5996
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho ... el Barry in bpo-26823 .) Import now raises the new exception ModuleNotFoundError (subclass of ImportError ) ... Code that currently checks for ImportError (in try-except) will still work. (Contributed by Eric Snow in bpo ... ted by Yury Selivanov in bpo-27041 .) New loop.get_exception_handler() method to get the current exception h ... ted by Guido van Rossum in bpo-25593 .) Future.set_exception will now raise TypeError when passed an instanc ...
https://man.plustar.jp/python/whatsnew/3.6.html - [similar]
ライブラリと拡張 FAQ — Python 3.6.5 ドキュメント 5892
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python よくある質問 ... while True : try : arg = q . get ( block = False ) except queue . Empty : print ( 'Worker' , threading . cur ...
https://man.plustar.jp/python/faq/library.html - [similar]
Python 2 から Python 3 への移植 — Python 3.6.5 ドキュメント 5892
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python HOWTO » Pyth ... 保つ助けになります: try : from importlib import abc except ImportError : from importlib2 import abc 互換性オプ ...
https://man.plustar.jp/python/howto/pyporting.html - [similar]
Unicode HOWTO — Python 3.6.5 ドキュメント 5892
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python HOWTO » Unic ... : with open ( '/tmp/input.txt' , 'r' ) as f : ... except OSError : # 'File not found' error message. print ...
https://man.plustar.jp/python/howto/unicode.html - [similar]
18.5.1. 基底イベントループ — Python 3.6.5 ドキュメント 5892
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... い方をカスタマイズできます。 AbstractEventLoop. set_exception_handler ( handler ) ¶ handler を新しいイベントル ... オブジェクトです (コンテキストの詳細については call_exception_handler() ドキュメントを参照してください)。 Abs ... tractEventLoop. get_exception_handler ( ) ¶ 例外ハンドラを返します。デフォルト ... バージョン 3.5.2 で追加. AbstractEventLoop. default_exception_handler ( context ) ¶ デフォルトの例外ハンドラー ...
https://man.plustar.jp/python/library/asyncio-eventloop.html - [similar]
14.1. csv --- CSV ファイルの読み書き — Python 3.6.5 ドキュメント 5892
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ます。 csv モジュールでは以下の例外を定義しています: exception csv. Error ¶ 全ての関数において、エラーが検出さ ... ader ( f ) try : for row in reader : print ( row ) except csv . Error as e : sys . exit ( 'file {} , line {} ...
https://man.plustar.jp/python/library/csv.html - [similar]
PREV 1 2 3 4 5 6 7 8 9 10 NEXT