Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 61 - 70 of about 125 for read (0.032 sec.)
16.1. os --- 雑多なオペレーティングシステムインタフェース — Python 3.6.5 ドキュ... 5700
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... 、組み込み関数 open() を使用してください。 open() は read() や write() (そしてさらに多くの) メソッドを持つ フ ... 利用できる環境 : Unix 。 バージョン 3.3 で追加. os. pread ( fd , buffersize , offset ) ¶ ファイル記述子 fd に ... 利用できる環境 : Unix 。 バージョン 3.3 で追加. os. read ( fd , n ) ¶ ファイル記述子 fd から最大で n バイト ... ファイルオブジェクト" を読み込むには、オブジェクトの read() か readline() メソッドを使用してください。 バージ ...
https://man.plustar.jp/python/library/os.html - [similar]
12.1. pickle --- Python オブジェクトの直列化 — Python 3.6.5 ドキュメント 5700
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ます。 引数 file には 2 つのメソッド、整数引数をとる read() と、引数を要求しない readline() メソッドがなけれ ... ません。 引数 file には2つのメソッド、整数引数をとる read() メソッドと、引数を要求しない readline() 引数がな ... kle 化する振る舞いの変更手順を紹介しています。 TextReader クラスはテキストファイルをオープンし、 readline( ... 呼ばれると、その度に行番号と行の内容を返します。 TextReader インスタンスが pickle 化されるとき、ファイルオブ ...
https://man.plustar.jp/python/library/pickle.html - [similar]
35.10. pipes --- シェルパイプラインへのインタフェース — Python 3.6.5 ドキュメン... 5700
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... orld' ) >>> f . close () >>> open ( 'pipefile' ) . read () 'HELLO WORLD' 35.10.1. テンプレートオブジェクト ...
https://man.plustar.jp/python/library/pipes.html - [similar]
29.9. traceback --- スタックトレースの表示または取得 — Python 3.6.5 ドキュメン... 5700
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... , the returned FrameSummary objects will not have read their lines in yet, making the cost of creating th ... e elements. format ( ) ¶ Returns a list of strings ready for printing. Each string in the resulting list c ... 9.4. トレースバックの例 ¶ この簡単な例では基本的な read-eval-print ループを実装しています。標準的な Python ...
https://man.plustar.jp/python/library/traceback.html - [similar]
27.7. tracemalloc --- メモリ割り当ての追跡 — Python 3.6.5 ドキュメント 5700
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... () #6: Lib/linecache.py:127: 95.4 KiB lines = fp . readlines () #7: urllib/parse.py:476: 71.8 KiB for a in ... domain ¶ Address space of a memory block ( int ). Read-only property. 27.7.2.3. Filter ¶ class tracemallo ... _pattern ¶ Filename pattern of the filter ( str ). Read-only property. all_frames ¶ all_frames が True の場 ...
https://man.plustar.jp/python/library/tracemalloc.html - [similar]
What's New in Python 2.5 — Python 3.6.5 ドキュメント 5700
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho ... ト PEP 著 Aahz; 実装 Thomas Wouters。 https://pylib.readthedocs.org/ Holger Krekel による py ライブラリで、 ... file.__enter__() が self を返しているからです。 threading モジュールのロック・条件変数でも ' with ' ステー ... トメントの恩恵にあずかれます: lock = threading . Lock () with lock : # Critical section of cod ... ッドのロック獲得の両方をやってのけています: lock = threading . Lock () with nested ( db_transaction ( db ), ...
https://man.plustar.jp/python/whatsnew/2.5.html - [similar]
What's New in Python 2.6 — Python 3.6.5 ドキュメント 5700
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho ... file.__enter__() が self を返しているからです。 threading モジュールのロック・条件変数でも ' with ' ステー ... トメントの恩恵にあずかれます: lock = threading . Lock () with lock : # Critical section of cod ... ッドのロック獲得の両方をやってのけています: lock = threading . Lock () with nested ( db_transaction ( db ), ... 列を共有出来ます。 multiprocessing モジュールは、 threading モジュールがスレッドの代わりにプロセスを使ように ...
https://man.plustar.jp/python/whatsnew/2.6.html - [similar]
What's New in Python 2.7 — Python 3.6.5 ドキュメント 5700
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho ... " , line 1 , in <module> TypeError : cannot modify read-only memory >>> b = bytearray ( string . letters ) ... Cea Avión; bpo-8156 . The pybsddb changelog can be read at http://hg.jcea.es/pybsddb/file/tip/ChangeLog .) ... onfigParser ( allow_no_value = True ) >>> config . readfp ( StringIO . StringIO ( sample_config )) >>> con ... ています。なので、より高速な処理のために io.BufferedReader でラップすることができます。 (contributed by Nir ...
https://man.plustar.jp/python/whatsnew/2.7.html - [similar]
What's New In Python 3.0 — Python 3.6.5 ドキュメント 5700
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho ... を受け取らなくなりました。 exec(f) の代わりに exec(f.read()) を使うことができます。 l または L で終わる整数リ ... onger used) and md5 (replaced by hashlib ), were already deprecated by PEP 4 . Others were removed as a re ... ast_type 等はまだあります。) array.array 型の整理: read() ならびに write() メソッドは廃止されました。代わり ... ncludes() および isCallable() は削除されました。 thread モジュールの整理: acquire_lock() ならびに release_ ...
https://man.plustar.jp/python/whatsnew/3.0.html - [similar]
What's New In Python 3.2 — Python 3.6.5 ドキュメント 5700
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho ... ァイルコピーを行う 4 つの並列スレッドを実行する、 ThreadPoolExecutor の単純な使用例です: import concurrent. ... futures , shutil with concurrent . futures . ThreadPoolExecutor ( max_workers = 4 ) as e : e . submit ... 計算の非同期な実行 PEP written by Brian Quinlan. threadpoolexecutor-example はスレッド並列でウェブページを ... 更の必要はありません。(---訳注: 原文は「If the app already used strings for headers ...」。native strings と ...
https://man.plustar.jp/python/whatsnew/3.2.html - [similar]
PREV 1 2 3 4 5 6 7 8 9 10 11 12 13 NEXT