Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 11 - 20 of about 99 for except (0.031 sec.)
21.26. xmlrpc.client --- XML-RPC クライアントアクセス — Python 3.6.5 ドキュメン... 7195
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... arshalled through XML), include the following (and except where noted, they are unmarshalled as the same Pyt ... rol characters with ASCII values between 0 and 31 (except, of course, tab, newline and carriage return); fai ... p://localhost:8000/" ) try : proxy . add ( 2 , 5 ) except xmlrpc . client . Fault as err : print ( "A fault ... http://google.com/" ) try : proxy . some_method () except xmlrpc . client . ProtocolError as err : print ( " ...
https://man.plustar.jp/python/library/xmlrpc.client.html - [similar]
26.7. 2to3 - Python 2 から 3 への自動コード変換 — Python 3.6.5 ドキュメント 7104
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... f has_key example.py This command runs every fixer except the apply fixer: $ 2to3 -x apply example.py Some f ... .values() を使用している場合はそれをラップします。 exceptexcept X, T を except X as T に変換します。 exec ... はオプションです。 standarderror ¶ StandardError を Exception に変更します。 sys_exc ¶ 廃止された sys.exc_val ...
https://man.plustar.jp/python/library/2to3.html - [similar]
19.1.1. email.message: 電子メールメッセージの表現 — Python 3.6.5 ドキュメント 7104
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... policy, which follows the rules of the email RFCs except for line endings (instead of the RFC mandated \r\n ... d header field. This is identical to __getitem__() except that optional failobj is returned if the named hea ... return an iterator over the all the related parts except the root part (ie: the part pointed to by the star ... ibute acts the same way as the preamble attribute, except that it contains text that appears between the las ...
https://man.plustar.jp/python/library/email.message.html - [similar]
18.5.3. タスクとコルーチン — Python 3.6.5 ドキュメント 7013
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ne, then returns the future's result, or raises an exception, which will be propagated. (If the future is ca ... ncelled, it will raise a CancelledError exception.) Note that tasks are futures, and everything s ... another coroutine to produce a result (or raise an exception, which will be propagated). The coroutine expre ... ing for this one using await or yield from . raise exception -- raise an exception in the coroutine that is ...
https://man.plustar.jp/python/library/asyncio-task.html - [similar]
What's New in Python 2.3 — Python 3.6.5 ドキュメント 7013
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho ... 特定しているのは、同じく 2.5 の PEP 341 によって try/except/finally の一体化されるまでは、 finally の try と e ... ログ出力します。 最も最新のトレースバックを記録する exception() 関数もあります。他の全ての関数も、 exc_info 引 ... トレースバックを記録します。: def f (): try : 1 / 0 except : logging . exception ( 'Problem recorded' ) f () ... sys . path_hooks : try : importer = hook ( path ) except ImportError : # ImportError, so try the other path ...
https://man.plustar.jp/python/whatsnew/2.3.html - [similar]
19.1.4. email.policy: ポリシーオブジェクト — Python 3.6.5 ドキュメント 6921
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... l be encoded (see fold_binary() and utf8 below for exceptions), but body parts may use the 8bit CTE. A cte_t ... utes have the same values as the current instance, except where those attributes are given new values by the ... efect flag. If it is True , defect is raised as an exception. If it is False (the default), obj and defect a ... sing the linesep from the policy and returned. The exception is lines containing non-ascii binary data. In t ...
https://man.plustar.jp/python/library/email.policy.html - [similar]
31.3. modulefinder --- スクリプト中で使われているモジュールを検索する — Python ... 6921
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... す: import re , itertools try : import baconhameggs except ImportError : pass try : import guido.python.ham e ...
https://man.plustar.jp/python/library/modulefinder.html - [similar]
17.2. multiprocessing --- プロセスベースの並列処理 — Python 3.6.5 ドキュメント 6921
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ( 10 ,)) try : print ( res . get ( timeout = 1 )) except TimeoutError : print ( "We lacked patience and got ... False >>> p . exitcode == - signal . SIGTERM True exception multiprocessing. ProcessError ¶ すべての multip ... rocessing 例外の基底クラスです。 exception multiprocessing. BufferTooShort ¶ この例外は Co ... ] はそのメッセージをバイト文字列で与えるものです。 exception multiprocessing. AuthenticationError ¶ 認証エラ ...
https://man.plustar.jp/python/library/multiprocessing.html - [similar]
2. 字句解析 — Python 3.6.5 ドキュメント 6921
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 言語リファレ ... as elif if or yield assert else import pass break except in raise 2.3.2. 予約済みの識別子種 (reserved class ... scapeseq shortstringchar ::= <any source character except "\" or newline or the quote> longstringchar ::= <a ... ny source character except "\"> stringescapeseq ::= "\" <any source character ... sescapeseq shortbyteschar ::= <any ASCII character except "\" or newline or the quote> longbyteschar ::= <an ...
https://man.plustar.jp/python/reference/lexical_analysis.html - [similar]
32.12. dis --- Python バイトコードの逆アセンブラ — Python 3.6.5 ドキュメント 6830
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... 、ネストしたループや try 文などを表しています。 POP_EXCEPT ¶ ブロックスタックからブロックを1つ取り除きます。 ... 在の命令から delta バイトの大きさを占めます。 SETUP_EXCEPT ( delta ) ¶ try-except 節から try ブロックをブロッ ... クスタックにプッシュします。 delta は最初の except ブロックを指します。 SETUP_FINALLY ( delta ) ¶ try ... -except 節から try ブロックをブロックスタックにプッシュしま ...
https://man.plustar.jp/python/library/dis.html - [similar]
PREV 1 2 3 4 5 6 7 8 9 10 NEXT