Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 11 - 20 of about 44 for finally (0.032 sec.)
What's New in Python 2.2 — Python 3.6.5 ドキュメント 7761
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho ... 行を再開します。(複雑な理由により、 yield は try ... finally の try ブロック内に含めることは許されていません; P ... い。) --- (---訳注: Python 2.5 の PEP 342 で try ... finally 内に置けないという制約はなくなりました。また、 try ... ... finally の try 、とここであえて特定しているのは、同じく 2. ... 5 の PEP 341 によって try/except/finally の一体化されるまでは、 finally の try と except の ...
https://man.plustar.jp/python/whatsnew/2.2.html - [similar]
6. 式 (expression) — Python 3.6.5 ドキュメント 7607
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 言語リファレ ... ジェネレータ-イテレータの close() メソッドが呼ばれ、 finally 節が実行されます。 yield from <expr> を使用した場合 ... ue ) ... except Exception as e : ... value = e ... finally : ... print ( "Don't forget to clean up when 'clos ... truct could result in a failure to execute pending finally clauses. In this case, it is the responsibility of ... ulting coroutine object, thus allowing any pending finally clauses to execute. To take care of finalization, ...
https://man.plustar.jp/python/reference/expressions.html - [similar]
What's New in Python 2.3 — Python 3.6.5 ドキュメント 7607
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho ... 行を再開します。(複雑な理由により、 yield は try ... finally の try ブロック内に含めることは許されていません; P ... い。) --- (---訳注: Python 2.5 の PEP 342 で try ... finally 内に置けないという制約はなくなりました。また、 try ... ... finally の try 、とここであえて特定しているのは、同じく 2. ... 5 の PEP 341 によって try/except/finally の一体化されるまでは、 finally の try と except の ...
https://man.plustar.jp/python/whatsnew/2.3.html - [similar]
36.2. imp --- import 内部へのアクセス — Python 3.6.5 ドキュメント 7469
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... それを閉じる責任があります。これを行うには、 try ... finally 文を使うことが最も良いです。 バージョン 3.3 で非推 ... load_module ( name , fp , pathname , description ) finally : # Since we may exit via an exception, close fp e ...
https://man.plustar.jp/python/library/imp.html - [similar]
29. Python ランタイムサービス — Python 3.6.5 ドキュメント 7469
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... .4. __enter__ 実装内のクリーンアップ 29.6.2.5. try-finally + flag 変数パターンを置き換える 29.6.2.6. コンテキ ...
https://man.plustar.jp/python/library/python.html - [similar]
18.5.3. タスクとコルーチン — Python 3.6.5 ドキュメント 7315
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... allback ( got_result ) try : loop . run_forever () finally : loop . close () この例では slow_operation() を g ... rror を準備します。コルーチンにはその後 try/except/finally を使用してクリーンアップするか要求を拒否する機会が ...
https://man.plustar.jp/python/library/asyncio-task.html - [similar]
19.1.7. email.contentmanager: MIME 内容の管理 — Python 3.6.5 ドキュメント 7315
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... for each of the types in the MRO ( typ.__mro__ ). Finally, if no other key yields a handler, check for a han ...
https://man.plustar.jp/python/library/email.contentmanager.html - [similar]
5. 組み込み例外 — Python 3.6.5 ドキュメント 7315
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ユーザー定義例外 の項目にあります。 except または finally 節内で例外を送出 (または再送出) するとき、 __conte ... s.exit() は、クリーンアップのための処理 ( try 文の finally 節) が実行されるようにするため、またデバッガが制御 ...
https://man.plustar.jp/python/library/exceptions.html - [similar]
2. 拡張の型の定義: チュートリアル — Python 3.6.5 ドキュメント 7177
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python インタプリタ ... e tp_methods slot: . tp_methods = Custom_methods , Finally, we'll make our type usable as a base class for su ... te the full class name in the PyTypeObject struct. Finally, we update our setup.py file to build the new modu ...
https://man.plustar.jp/python/extending/newtypes_tutorial.html - [similar]
18.5.1. 基底イベントループ — Python 3.6.5 ドキュメント 7177
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... す。以下に例を示します。 try : loop . run_forever () finally : loop . run_until_complete ( loop . shutdown_asyn ... it." % os . getpid ()) try : loop . run_forever () finally : loop . close () この例は UNIX でのみ動きます。 関 ...
https://man.plustar.jp/python/library/asyncio-eventloop.html - [similar]
PREV 1 2 3 4 5 NEXT