Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 81 - 90 of about 99 for except (0.123 sec.)
6.3. difflib --- 差分の計算を助ける — Python 3.6.5 ドキュメント 5892
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... et_close_matches ( 'accept' , keyword . kwlist ) ['except'] difflib. ndiff ( a , b , linejunk=None , charjun ...
https://man.plustar.jp/python/library/difflib.html - [similar]
29.12. inspect --- 活動中のオブジェクトの情報を取得する — Python 3.6.5 ドキュメ... 5892
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... criptor_types : try : result = result . __get__ () except AttributeError : # descriptors can raise Attribute ...
https://man.plustar.jp/python/library/inspect.html - [similar]
19.2. json --- JSON エンコーダおよびデコーダ — Python 3.6.5 ドキュメント 5892
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... default ( self , o ): try : iterable = iter ( o ) except TypeError : pass else : return list ( iterable ) # ... bject ): mysocket . write ( chunk ) 19.2.3. 例外 ¶ exception json. JSONDecodeError ( msg , doc , pos ) ¶ Val ... 、出力します: >>> # Neither of these calls raises an exception, but the results are not valid JSON >>> json . ...
https://man.plustar.jp/python/library/json.html - [similar]
36.1. optparse --- コマンドラインオプション解析器 — Python 3.6.5 ドキュメント 5892
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... floatable ( str ): try : float ( str ) return True except ValueError : return False for arg in parser . rarg ... on , opt , value ): try : return complex ( value ) except ValueError : raise OptionValueError ( "option %s : ...
https://man.plustar.jp/python/library/optparse.html - [similar]
16.1. os --- 雑多なオペレーティングシステムインタフェース — Python 3.6.5 ドキュ... 5892
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... が受理しない引数に対して、 OSError を送出します。 exception os. error ¶ 組み込みの OSError 例外に対するエイ ... ange ( fd_low , fd_high ): try : os . close ( fd ) except OSError : pass os. device_encoding ( fd ) ¶ fd に関 ... に書いたほうが良いです try : fp = open ( "myfile" ) except PermissionError : return "some default data" else ... the error to continue with the walk, or raise the exception to abort the walk. Note that the filename is av ...
https://man.plustar.jp/python/library/os.html - [similar]
20.13. xml.parsers.expat --- Expat を使った高速な XML 解析 — Python 3.6.5 ドキ... 5892
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... は、例外を一つと型オブジェクトを一つ提供しています: exception xml.parsers.expat. ExpatError ¶ Expat がエラーを ... 詳細な情報は、 ExpatError 例外 を参照してください。 exception xml.parsers.expat. error ¶ ExpatError の別名です ... serCreate () try : p . Parse ( some_xml_document ) except ExpatError as err : print ( "Error:" , errors . me ...
https://man.plustar.jp/python/library/pyexpat.html - [similar]
6.1. string --- 一般的な文字列操作 — Python 3.6.5 ドキュメント 5892
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ndex_string index_string ::= <any source character except "]"> + conversion ::= "r" | "s" | "a" format_spec ...
https://man.plustar.jp/python/library/string.html - [similar]
26.8. test --- Python 用回帰テストパッケージ — Python 3.6.5 ドキュメント 5892
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... あります。 このモジュールは次の例外を定義しています: exception test.support. TestFailed ¶ テストが失敗したとき ... est.TestCase の assertXXX メソッドが推奨されます。 exception test.support. ResourceDenied ¶ unittest.SkipTes ... If quiet is False , the context manager raises an exception on error. Otherwise, if path is specified and c ... y in a buildbot environment. This method raises an exception if the sock.family is AF_INET and sock.type is ...
https://man.plustar.jp/python/library/test.html - [similar]
26.1. typing --- 型ヒントのサポート — Python 3.6.5 ドキュメント 5892
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ble [[ int ], None ], on_error : Callable [[ int , Exception ], None ]) -> None : # Body 型ヒントの実引数の型 ... default : Y ) -> Y : try : return mapping [ key ] except KeyError : return default class typing. Type ( Gen ...
https://man.plustar.jp/python/library/typing.html - [similar]
3. データモデル — Python 3.6.5 ドキュメント 5892
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 言語リファレ ... せることがあるので注意してください。また、 ' try ... except ' 文を使って例外を捕捉できるようにすると、オブジェ ... atement or falls off the end, a StopAsyncIteration exception is raised and the asynchronous iterator will ha ... された命令は、 try 文内で例外が発生し、かつ対応する except 節や finally 節がない場合には、フレームオブジェクト ... or . A common cause of reference cycles is when an exception has been caught in a local variable. The frame' ...
https://man.plustar.jp/python/reference/datamodel.html - [similar]
PREV 1 2 3 4 5 6 7 8 9 10 NEXT