Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 51 - 60 of about 99 for except (0.125 sec.)
4. C および C++ 拡張のビルド — Python 3.6.5 ドキュメント 6087
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python インタプリタ ... : try : suffix = b '_' + name . encode ( 'ascii' ) except UnicodeEncodeError : suffix = b 'U_' + name . enco ...
https://man.plustar.jp/python/extending/building.html - [similar]
Argument Clinic How-To — Python 3.6.5 ドキュメント 6087
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python HOWTO » Argu ... ernally-visible change to Python's behavior. Well, except for one difference: inspect.signature() run on you ... converter is much like writing a custom converter. Except it's somewhat simpler, because return converters a ... ords, the parsing function generated will throw an exception if it receives any.) Clinic 出力の変更とリダイレ ...
https://man.plustar.jp/python/howto/clinic.html - [similar]
19.1.8. email: 使用例 — Python 3.6.5 ドキュメント 6087
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... = default ) try : os . mkdir ( args . directory ) except FileExistsError : pass counter = 1 for part in msg ...
https://man.plustar.jp/python/library/email.examples.html - [similar]
12.6. sqlite3 --- SQLite データベースに対する DB-API 2.0 インタフェース — Pytho... 6087
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... tartswith ( "SELECT" ): print ( cur . fetchall ()) except sqlite3 . Error as e : print ( "An error occurred: ... ng query and cause it to raise an OperationalError exception. set_trace_callback ( trace_callback ) ¶ 各 SQL ... usable from this point forward; a ProgrammingError exception will be raised if any operation is attempted wi ... ... 2006-01-05 BUY RHAT 100.0 35.14 12.6.5. 例外 ¶ exception sqlite3. Warning ¶ A subclass of Exception . ex ...
https://man.plustar.jp/python/library/sqlite3.html - [similar]
18.2. ssl --- ソケットオブジェクトに対する TLS/SSL ラッパー — Python 3.6.5 ドキ... 6087
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... 要とするようになります。 18.2.1. 関数、定数、例外 ¶ exception ssl. SSLError ¶ (現在のところ OpenSSL ライブラリ ... のバージョンに依存します。 バージョン 3.3 で追加. exception ssl. SSLZeroReturnError ¶ 読み出しあるいは書き込 ... ないことに注意してください。 バージョン 3.3 で追加. exception ssl. SSLWantReadError ¶ 読み出しあるいは書き込み ... LError サブクラス例外です。 バージョン 3.3 で追加. exception ssl. SSLWantWriteError ¶ 読み出しあるいは書き込 ...
https://man.plustar.jp/python/library/ssl.html - [similar]
17.5. subprocess --- サブプロセス管理 — Python 3.6.5 ドキュメント 6087
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ハンドルに出力されるように指定するための特殊値です。 exception subprocess. SubprocessError ¶ このモジュールの他 ... 例外のための基底クラスです。 バージョン 3.3 で追加. exception subprocess. TimeoutExpired ¶ SubprocessError の ... で変更: 属性 stdout および stderr が追加されました。 exception subprocess. CalledProcessError ¶ SubprocessErro ... outs , errs = proc . communicate ( timeout = 15 ) except TimeoutExpired : proc . kill () outs , errs = proc ...
https://man.plustar.jp/python/library/subprocess.html - [similar]
29.1. sys --- システムパラメータと関数 — Python 3.6.5 ドキュメント 6087
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... repr ( value ) try : sys . stdout . write ( text ) except UnicodeEncodeError : bytes = text . encode ( sys . ... て、バイトコード生成を制御することもできます。 sys. excepthook ( type , value , traceback ) ¶ 指定したトレース ... スタンス・トレースバックオブジェクトを引数として sys.excepthook を呼び出します。対話セッション中に発生した場合 ... ベルでの例外情報出力処理をカスタマイズする場合、 sys.excepthook に引数の数が三つの関数を指定します。 sys. __di ...
https://man.plustar.jp/python/library/sys.html - [similar]
14.4. xdrlib --- XDR データのエンコードおよびデコード — Python 3.6.5 ドキュメン... 6087
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... の例外はクラスインスタンスとしてコードされています: exception xdrlib. Error ¶ ベースとなる例外クラスです。 Er ... として msg を持ち、エラーの詳細が収められています。 exception xdrlib. ConversionError ¶ Error から派生したクラ ... xdrlib . Packer () try : p . pack_double ( 8.01 ) except xdrlib . ConversionError as instance : print ( 'pa ...
https://man.plustar.jp/python/library/xdrlib.html - [similar]
What's New In Python 3.2 — Python 3.6.5 ドキュメント 6087
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho ... : return x inner () del x これは可能になりました。 except 節の対象が消去されることを思い出せば、 Python 2.6 ... ): def print_error (): print ( e ) try : something except Exception as e : print_error () # implicit "del e" ... losed . wait ( timeout = midnight - time . now ()) except BrokenBarrierError : lockbox = seal_ballots ( ball ... 使うようになりました。以前はこの場合は logging.raiseExceptions 属性の設定に従って、例外が発生するか黙って捨て ...
https://man.plustar.jp/python/whatsnew/3.2.html - [similar]
What's New In Python 3.5 — Python 3.6.5 ドキュメント 6087
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho ... : while True : try : print ( "Hello World" ) break except InterruptedError : continue PEP 475 は EINTR を受け ... <stdin>" , line 2 , in gen StopIteration The above exception was the direct cause of the following exception ... 。 (Contributed by Yury Selivanov.) 新しい loop.get_exception_handler() メソッドで、現在の例外ハンドラが取得で ... tion.getresponse() now raises a RemoteDisconnected exception when a remote server connection is closed unexp ...
https://man.plustar.jp/python/whatsnew/3.5.html - [similar]
PREV 1 2 3 4 5 6 7 8 9 10 NEXT