Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 71 - 80 of about 139 for exception (0.096 sec.)
拡張と埋め込み FAQ — Python 3.6.5 ドキュメント 5516
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python よくある質問 ... " , "(ii)" , 10 , 0 ); if ( res == NULL ) { ... an exception occurred ... } else { Py_DECREF ( res ); } なお、 ... ; } } /* syntax error or E_EOF? */ else if ( PyErr_ExceptionMatches ( PyExc_SyntaxError )) { PyErr_Fetch ( & ex ... c , & val , & trb ); /* clears exception! */ if ( PyArg_ParseTuple ( val , "sO" , & msg , & ...
https://man.plustar.jp/python/faq/extending.html - [similar]
19.1.4. email.policy: ポリシーオブジェクト — Python 3.6.5 ドキュメント 5516
ナビゲーション 索引 モジュール | 次へ | 前へ | 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_type ... efect flag. If it is True , defect is raised as an exception. If it is False (the default), obj and defect are ... sing the linesep from the policy and returned. The exception is lines containing non-ascii binary data. In that ...
https://man.plustar.jp/python/library/email.policy.html - [similar]
36.2. imp --- import 内部へのアクセス — Python 3.6.5 ドキュメント 5516
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... r : pass # If any of the following calls raises an exception, # there's a problem we can't handle -- let the ca ... description ) finally : # Since we may exit via an exception, close fp explicitly. if fp : fp . close () 関連キ ...
https://man.plustar.jp/python/library/imp.html - [similar]
16.2. io --- ストリームを扱うコアツール — Python 3.6.5 ドキュメント 5516
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... =None ) ¶ 組み込みの open() 関数のエイリアスです。 exception io. BlockingIOError ¶ 互換性のための、組み込みの B ... lockingIOError 例外のエイリアスです。 exception io. UnsupportedOperation ¶ OSError と ValueError を ... d memory buffer -- # .getvalue() will now raise an exception. output . close () class io. IncrementalNewlineDec ...
https://man.plustar.jp/python/library/io.html - [similar]
14.3. netrc --- netrc ファイルの処理 — Python 3.6.5 ドキュメント 5516
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... : POSIX パーミッションのチェックが追加されました。 exception netrc. NetrcParseError ¶ ソースファイルのテキスト中 ...
https://man.plustar.jp/python/library/netrc.html - [similar]
18.1. socket --- 低水準ネットワークインターフェイス — Python 3.6.5 ドキュメント 5516
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ールは以下の要素を公開しています。 18.1.2.1. 例外 ¶ exception socket. error ¶ OSError の非推奨のエイリアスです。 ... き、このクラスは OSError のエイリアスになりました。 exception socket. herror ¶ OSError のサブクラス。この例外はア ... 更: このクラスは OSError のサブクラスになりました。 exception socket. gaierror ¶ OSError のサブクラスです。この例 ... 更: このクラスは OSError のサブクラスになりました。 exception socket. timeout ¶ OSError のサブクラスです。この例 ...
https://man.plustar.jp/python/library/socket.html - [similar]
17.5. subprocess --- サブプロセス管理 — Python 3.6.5 ドキュメント 5516
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ハンドルに出力されるように指定するための特殊値です。 exception subprocess. SubprocessError ¶ このモジュールの他の ... 例外のための基底クラスです。 バージョン 3.3 で追加. exception subprocess. TimeoutExpired ¶ SubprocessError のサブ ... で変更: 属性 stdout および stderr が追加されました。 exception subprocess. CalledProcessError ¶ SubprocessError の ...
https://man.plustar.jp/python/library/subprocess.html - [similar]
29.5. warnings --- 警告の制御 — Python 3.6.5 ドキュメント 5516
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... rning すべての警告カテゴリクラスの基底クラスです。 Exception のサブクラスです。 UserWarning warn() の標準のカテ ... すべての行と一致します。 Warning クラスは組み込みの Exception クラスから派生しているので、警告をエラーに変換する ...
https://man.plustar.jp/python/library/warnings.html - [similar]
Logging HOWTO — Python 3.6.5 ドキュメント 5456
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python HOWTO » Logg ... ケーションドメインに応じて logging.error() , logging.exception() または logging.critical() ロギング関数は、そのイ ... 報をログに記録するかを決定するのに使います。 Logger.exception() は Logger.error() と似たログメッセージを作成しま ... す。違いは Logger.exception() がスタックトレースを一緒にダンプすることです。例 ... ージョンでは、振る舞いは以下の通りです: logging.raiseExceptions が False (製品モード) なら、イベントは黙って捨てら ...
https://man.plustar.jp/python/howto/logging.html - [similar]
8.10. copy --- 浅いコピーおよび深いコピー操作 — Python 3.6.5 ドキュメント 5456
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... eepcopy ( x ) ¶ x の深い (deep) コピーを返します。 exception copy. error ¶ モジュール特有のエラーを送出します。 ...
https://man.plustar.jp/python/library/copy.html - [similar]
PREV 1 2 3 4 5 6 7 8 9 10 11 12 13 14 NEXT