Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 11 - 20 of about 62 for errors (0.060 sec.)
12.1. pickle --- Python オブジェクトの直列化 — Python 3.6.5 ドキュメント 7398
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ( file , * , fix_imports=True , encoding="ASCII" , errors="strict" ) ¶ pickle オブジェクト表現を、オープンし ... 任意のキーワード引数 fix_imports 、 encoding および errors は Python 2 で作成された pickle ストリームとの互換 ... ている新しい名前との対応付けを試みます。 encoding と errors は Python 2 で pickle 化された 8 ビット文字列インス ... object , * , fix_imports=True , encoding="ASCII" , errors="strict" ) ¶ bytes オブジェクトから pickle 化された ...
https://man.plustar.jp/python/library/pickle.html - [similar]
4. 組み込み型 — Python 3.6.5 ドキュメント 7398
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... '' ) ¶ class str ( object=b'' , encoding='utf-8' , errors='strict' ) object の 文字列 版を返します。 object ... れます。それ以外の場合 str() の動作は、 encoding や errors が与えられたかどうかによって次のように変わります。 ... encoding も errors も与えられない場合、 str(object) は object.__str__ ... 代わりに repr(object) の結果を返します。 encoding か errors の少なくとも一方が与えられた場合、 object は bytes ...
https://man.plustar.jp/python/library/stdtypes.html - [similar]
11.5. filecmp --- ファイルおよびディレクトリの比較 — Python 3.6.5 ドキュメント 7210
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ファイル名からなる3つのリスト: match , mismatch , errors を返します。 match には双方のディレクトリで一致した ... にはそうでないファイル名のリストが入ります。そして errors は比較されなかったファイルが列挙されます。 errors ...
https://man.plustar.jp/python/library/filecmp.html - [similar]
Logging クックブック — Python 3.6.5 ドキュメント 7094
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python HOWTO » Logg ... g' , 'mode' : 'w' , 'formatter' : 'detailed' , }, 'errors' : { 'class' : 'logging.FileHandler' , 'filename' ... : 'mplog-errors.log' , 'mode' : 'w' , 'level' : 'ERROR' , 'formatt ... ' : 'DEBUG' , 'handlers' : [ 'console' , 'file' , 'errors' ] }, } workers = [] for i in range ( 5 ): wp = Pr ... g' , 'mode' : 'w' , 'formatter' : 'detailed' , }, 'errors' : { 'class' : 'logging.FileHandler' , 'filename' ...
https://man.plustar.jp/python/howto/logging-cookbook.html - [similar]
Unicode HOWTO — Python 3.6.5 ドキュメント 7094
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python HOWTO » Unic ... F-8 のような値を encoding 引数に取り、オプションで errors 引数を取ります。 errors 引数は、入力文字列に対しエ ... ng でエンコードして、 bytes による表現で返します。 errors 引数は decode() メソッドのパラメータと同じものです ... rite() . This works through open() 's encoding and errors parameters which are interpreted just like those i ... er: with open ( fname , 'r' , encoding = "ascii" , errors = "surrogateescape" ) as f : data = f . read () # ...
https://man.plustar.jp/python/howto/unicode.html - [similar]
19.1.14. email.utils: 多方面のユーティリティ — Python 3.6.5 ドキュメント 7094
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ます。 email.utils. collapse_rfc2231_value ( value , errors='replace' , fallback_charset='us-ascii' ) ¶ ヘッダ ... ひとつの Unicode 文字列にまとめます。オプション引数 errors は str の encode() メソッドの引数 errors に渡されま ...
https://man.plustar.jp/python/library/email.util.html - [similar]
13.2. gzip --- gzip ファイルのサポート — Python 3.6.5 ドキュメント 7094
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... me , mode='rb' , compresslevel=9 , encoding=None , errors=None , newline=None ) ¶ gzip 圧縮ファイルをバイナリ ... ompresslevel) と等価です。この時、引数 encoding 、 errors 、および newline を指定してはいけません。 テキスト ... 、テキストモードのサポート、および引数に encoding 、 errors 、および newline を追加しました。 バージョン 3.4 で ...
https://man.plustar.jp/python/library/gzip.html - [similar]
ファイルオブジェクト — Python 3.6.5 ドキュメント 7036
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python/C API リファ ... int buffering , const char *encoding , const char *errors , const char *newline , int closefd ) ¶ 既に開かれ ... ルオブジェクトを作成します。引数 name 、 encoding 、 errors 、 newline には NULL を指定してデフォルトの値を使う ...
https://man.plustar.jp/python/c-api/file.html - [similar]
11.3. fileinput --- 複数の入力ストリームをまたいだ行の繰り返し処理をサポートする... 7036
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... k_compressed) fileinput. hook_encoded ( encoding , errors=None ) ¶ Returns a hook which opens each file with ... open() , using the given encoding and errors to read the file. Usage example: fi = fileinput.Fi ... scape")) バージョン 3.6 で変更: Added the optional errors parameter. 関連キーワード: fileinput , 関数 , File ...
https://man.plustar.jp/python/library/fileinput.html - [similar]
Pythonモジュール索引 — Python 3.6.5 ドキュメント 7036
ナビゲーション 索引 モジュール | Python » 3.6.5 ドキュメント » Pythonモジュール索引 _ | a | b | ... bution being built/installed/distributed distutils.errors Provides standard distutils exceptions distutils.e ... ncoders Encoders for email message payloads. email.errors The exception classes used by the email package. e ... Expat non-validating XML parser. xml.parsers.expat.errors xml.parsers.expat.model xml.sax Package containing ...
https://man.plustar.jp/python/py-modindex.html - [similar]
PREV 1 2 3 4 5 6 7 NEXT