Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 131 - 140 of about 214 for FILE (0.136 sec.)
オペレーティングシステム関連のユーティリティ — Python 3.6.5 ドキュメント 4716
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python/C API リファ ... *path ) ¶ Return value: New reference. Return the file system representation for path . If the object is ... d. バージョン 3.6 で追加. int Py_FdIsInteractive ( FILE *fp , const char *filename ) ¶ filename という名前 ... えられる場合に真 (非ゼロ) を返します。これは isatty(fileno(fp)) が真になるファイルの場合です。グローバルなフ ... ラグ Py_InteractiveFlag が真の場合には、 filename ポインタが NULL か、名前が '<stdin>' または '? ...
https://man.plustar.jp/python/c-api/sys.html - [similar]
7. 使用例 — Python 3.6.5 ドキュメント 4716
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python モジュールの ... トリが Python パッケージに相当するのかを __init__.py files. を探して調べようとします。) このようにして、デフ ... ls.dist.DistributionMetadata クラスとその read_pkg_file() メソッドを使って、この静的ファイルを読むことがで ... = DistributionMetadata () >>> metadata . read_pkg_file ( open ( 'distribute-0.6.8-py2.7.egg-info' )) >>> ...
https://man.plustar.jp/python/distutils/examples.html - [similar]
29.3. builtins --- 組み込みオブジェクト — Python 3.6.5 ドキュメント 4716
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... Caser ( f ) class UpperCaser : '''Wrapper around a file that converts output to upper-case.''' def __init_ ...
https://man.plustar.jp/python/library/builtins.html - [similar]
7.2. codecs --- codec レジストリと基底クラス — Python 3.6.5 ドキュメント 4716
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... い codecs を利用できるようにします。 codecs. open ( filename , mode='r' , encoding=None , errors='strict' , ... デフォルトでは行バッファリングです。 codecs. EncodedFile ( file , data_encoding , file_encoding=None , erro ... 指定された data_encoding に従ってデコードされ、次に file_encoding を使用して元のファイルにバイトとして書き出 ... されます。元のファイルから読み出されたバイトは、 file_encoding に従ってデコードされ、結果は data_encodin ...
https://man.plustar.jp/python/library/codecs.html - [similar]
32.11. compileall --- Python ライブラリをバイトコンパイル — Python 3.6.5 ドキュ... 4716
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... イルするスクリプトとして機能します。 directory ... ¶ file ... ¶ 位置引数は、コンパイルするファイル群か、再帰 ... t を受け取るようになりました。 compileall. compile_file ( fullname , ddir=None , force=False , rx=None , q ... rce = True ) # Perform same compilation, excluding files in .svn directories. import re compileall . compi ...
https://man.plustar.jp/python/library/compileall.html - [similar]
9.4. decimal --- 十進固定及び浮動小数点数の算術演算 — Python 3.6.5 ドキュメント 4716
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ecimal ( 3.14 ) Traceback (most recent call last): File "<stdin>" , line 1 , in <module> decimal.FloatOper ... ( '3.5' ) < 3.7 Traceback (most recent call last): File "<stdin>" , line 1 , in <module> decimal.FloatOper ... 999999999999" ) Traceback (most recent call last): File "<stdin>" , line 1 , in <module> decimal.InvalidOp ... / Decimal ( 0 ) Traceback (most recent call last): File "<pyshell#143>" , line 1 , in -toplevel- Decimal ( ...
https://man.plustar.jp/python/library/decimal.html - [similar]
11.3. fileinput --- 複数の入力ストリームをまたいだ行の繰り返し処理をサポートする... 4716
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... リ » 11. ファイルとディレクトリへのアクセス » 11.3. fileinput --- 複数の入力ストリームをまたいだ行の繰り返し ... 処理をサポートする ¶ ソースコード: Lib/fileinput.py このモジュールは標準入力やファイルの並びに ... てください。 典型的な使い方は以下の通りです: import fileinput for line in fileinput . input (): process ( l ... キストモードでオープンされます。しかし、 input() や FileInput をコールする際に mode パラメータを指定すれば、 ...
https://man.plustar.jp/python/library/fileinput.html - [similar]
27.3. pdb --- Python デバッガ — Python 3.6.5 ドキュメント 4716
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... odule . test () Traceback (most recent call last): File "<stdin>" , line 1 , in <module> File "./mymodule. ... py" , line 4 , in test test2 () File "./mymodule.py" , line 3 , in test2 print ( spam ) ... ルトは 1) 古いフレーム方向に移動します。 b(reak) [([filename:]lineno | function) [, condition]] ¶ lineno 引 ... てすべてのブレークポイントをリストします。 tbreak [([filename:]lineno | function) [, condition]] ¶ 一時的なブ ...
https://man.plustar.jp/python/library/pdb.html - [similar]
31.2. pkgutil --- パッケージ拡張ユーティリティ — Python 3.6.5 ドキュメント 4716
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... 要ありません。 class pkgutil. ImpLoader ( fullname , file , filename , etc ) ¶ Loader that wraps Python's "c ... イスは非標準なので、モジュールは importlib.machinery.FileFinder と zipimport.zipimporter の実装も提供します。 ... イスは非標準なので、モジュールは importlib.machinery.FileFinder と zipimport.zipimporter の実装も提供します。 ... ource argument should be in the form of a relative filename, using / as the path separator. The parent dir ...
https://man.plustar.jp/python/library/pkgutil.html - [similar]
26.8. test --- Python 用回帰テストパッケージ — Python 3.6.5 ドキュメント 4716
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... 並べます。コマンド python -m test -uall,-audio,-largefile とすると、 audio と largefile リソースを除く全ての ... t から実行するときに使われます。 test.support. findfile ( filename , subdir=None ) ¶ filename という名前の ... へのパスを返します。一致するものが見つからなければ、 filename 自体を返します。 filename 自体もファイルへのパ ... スでありえるので、 filename が返っても失敗ではありません。 subdir を設定す ...
https://man.plustar.jp/python/library/test.html - [similar]