Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 1 - 10 of about 31 for stat (0.029 sec.)
11.4. stat --- stat() の結果を解釈する — Python 3.6.5 ドキュメント 15433
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... リ » 11. ファイルとディレクトリへのアクセス » 11.4. stat --- stat() の結果を解釈する ¶ ソースコード: Lib/st ... at.py stat モジュールでは、 os.stat() 、 os.lstat() 、および ... os.fstat() が存在する場合に、これらの関数が返す内容を解釈す ... るための定数や関数を定義しています。 stat() 、 fstat() 、および lstat() の関数呼び出しについ ...
https://man.plustar.jp/python/library/stat.html - [similar]
16.1. os --- 雑多なオペレーティングシステムインタフェース — Python 3.6.5 ドキュ... 12311
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... を利用できるようにする、というものです。例えば、 os.stat(path) は path に関する stat 情報を、 (POSIX を元に ... , name) と等価です。 利用できる環境 : Unix 。 os. fstat ( fd ) ¶ ファイル記述子 fd の状態を取得します。 st ... lt オブジェクトを返します。 Python 3.3 以降では os.stat(fd) と等価です。 参考 stat() 関数。 os. fstatvfs ( ... fd ) ¶ statvfs() と同様に、ファイル記述子 fd に関連付けられたフ ...
https://man.plustar.jp/python/library/os.html - [similar]
27.7. tracemalloc --- メモリ割り当ての追跡 — Python 3.6.5 ドキュメント 9237
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ... snapshot = tracemalloc . take_snapshot () top_stats = snapshot . statistics ( 'lineno' ) print ( "[ T ... op 10 ]" ) for stat in top_stats [: 10 ]: print ( stat ) Python テスト ... edtuple types. オプションの詳細については Snapshot.statistics() を参照してください。 27.7.1.2. 差を計算する ... ... snapshot2 = tracemalloc . take_snapshot () top_stats = snapshot2 . compare_to ( snapshot1 , 'lineno' ) ...
https://man.plustar.jp/python/library/tracemalloc.html - [similar]
11.5. filecmp --- ファイルおよびディレクトリの比較 — Python 3.6.5 ドキュメント 8396
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ば False を返します。 shallow が真の場合、同一の os.stat() シグニチャを持つファイルは等しいとみなされます。 ... の比較と結果のキャッシュを使用します。ファイルの os.stat() 情報が変更された場合、キャッシュの項目は無効化さ ... の両方にあり、ディレクトリ間でタイプが異なるか、 os.stat() がエラーを報告するような名前です。 same_files ¶ ... リの比較 11.5.1. dircmp クラス 前のトピックへ 11.4. stat --- stat() の結果を解釈する 次のトピックへ 11.6. t ...
https://man.plustar.jp/python/library/filecmp.html - [similar]
21.16. nntplib --- NNTP プロトコルクライアント — Python 3.6.5 ドキュメント 8185
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... set readermode . The NNTP class supports the with statement to unconditionally consume OSError exceptions ... group instead. If flag has another value, then the status of the newsgroup should be considered unknown. T ... list) where list is a list of help strings. NNTP. stat ( message_spec=None ) ¶ Send a STAT command, where ... thon.devel' ) >>> resp , number , message_id = s . stat ( first ) >>> number , message_id (9099, '<2003011 ...
https://man.plustar.jp/python/library/nntplib.html - [similar]
11.1. pathlib --- オブジェクト指向のファイルシステムパス — Python 3.6.5 ドキュ... 8137
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... Path('/home/antoine') バージョン 3.5 で追加. Path. stat ( ) ¶ ( os.stat() と同様の) 現在のパスに関する情報 ... ものになります。 >>> p = Path ( 'setup.py' ) >>> p . stat () . st_size 956 >>> p . stat () . st_mtime 132788 ... 限を変更します: >>> p = Path ( 'setup.py' ) >>> p . stat () . st_mode 33277 >>> p . chmod ( 0o444 ) >>> p . ... stat () . st_mode 33060 Path. exists ( ) ¶ パスが既存の ...
https://man.plustar.jp/python/library/pathlib.html - [similar]
11.2. os.path --- 共通のパス名操作 — Python 3.6.5 ドキュメント 8088
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... 存在していたとしても、要求されたファイルに対する os.stat() の実行権がなければこの関数が False を返すことがあ ... たシンボリックリンクについては True を返します。 os.lstat() がない環境では exists() と等価です。 バージョン ... アクセスできなかった場合は OSError を送出します。 os.stat_float_times() が True を返す場合、この関数の返り値 ... アクセスできなかった場合は OSError を送出します。 os.stat_float_times() が True を返す場合、この関数の返り値 ...
https://man.plustar.jp/python/library/os.path.html - [similar]
11. ファイルとディレクトリへのアクセス — Python 3.6.5 ドキュメント 7926
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... リームをまたいだ行の繰り返し処理をサポートする 11.4. stat --- stat() の結果を解釈する 11.5. filecmp --- ファ ...
https://man.plustar.jp/python/library/filesys.html - [similar]
What's New In Python 3.3 — Python 3.6.5 ドキュメント 7797
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho ... に classmethod を渡して使ってください。 abc.abstractstaticmethod は非推奨となりました。代わりに abc.abstrac ... tmethod() に staticmethod を渡して使ってください。 (Contributed by D ... cess() , chflags() , chmod() , chown() , link() , lstat() , mkdir() , mkfifo() , mknod() , open() , readli ... nk() , remove() , rename() , replace() , rmdir() , stat() , symlink() , unlink() , utime() が、新たな 2 つ ...
https://man.plustar.jp/python/whatsnew/3.3.html - [similar]
What's New In Python 3.4 — Python 3.6.5 ドキュメント 7716
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho ... ルプリミティブを基にしています ( PEP 3156 の一部)。 statistics : 基礎的な 数値的に安定な統計ライブラリ ( PE ... これは select モジュールプリミティブに基いています。 statistics ¶ 新規モジュール statistics ( PEP 450 で定義 ... clear_cache() 関数が追加されました。 filecmp は os.stat() 情報をキャッシュして最後の比較時点からのファイル ... by Brian Thorne in bpo-12428 .) gc ¶ 新規関数 get_stats() は、インタプリタが開始してからの、世代ごと回収統 ...
https://man.plustar.jp/python/whatsnew/3.4.html - [similar]
PREV 1 2 3 4 NEXT