Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 91 - 100 of about 125 for read (0.120 sec.)
25.1. tkinter --- Tcl/Tk の Python インタフェース — Python 3.6.5 ドキュメント 5553
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... tkinter widget = tkinter . Tk () mask = tkinter . READABLE | tkinter . WRITABLE widget . tk . createfileh ... いので、 BufferedIOBase クラスや TextIOBase クラスの read() メソッドおよび readline() メソッドを使おうとしな ... といいです。その他のファイルには、 raw 読み込みか os.read(file.fileno(), maxbytecount) を使ってください。 Wi ... ) ¶ ファイルハンドラの登録を解除します。 tkinter. READABLE ¶ tkinter. WRITABLE ¶ tkinter. EXCEPTION ¶ mas ...
https://man.plustar.jp/python/library/tkinter.html - [similar]
超高水準レイヤ — Python 3.6.5 ドキュメント 5479
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python/C API リファ ... const char *filename , PyCompilerFlags *flags ) ¶ Read and execute statements from a file associated with ... トと他のイベントループを統合できます。 char* (*PyOS_ReadlineFunctionPointer) ( FILE * , FILE * , const char ... 文字列を返すという動作が期待されています。 例えば、 readline モジュールはこのフックを設定して、行編集機能や ...
https://man.plustar.jp/python/c-api/veryhigh.html - [similar]
Windows 上の Python FAQ — Python 3.6.5 ドキュメント 5479
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python よくある質問 ... る _どんな_ オブジェクトにもリダイレクトできるので、read() と write() メソッドを含む (拡張モジュールで定義さ ...
https://man.plustar.jp/python/faq/windows.html - [similar]
用語集 — Python 3.6.5 ドキュメント 5479
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » 用語集 ¶ >>> インタ ... p.GzipFile . のインスタンスです。 参考 A text file reads and writes str objects. bytes-like object バッファ ... ルオブジェクト) 下位のリソースへのファイル志向 API ( read() や write() メソッドを持つもの) を公開しているオブ ... するコーデックです。 text file A file object able to read and write str objects. Often, a text file actually ... and instances of io.StringIO . 参考 A binary file reads and write bytes objects. triple-quoted string (三 ...
https://man.plustar.jp/python/glossary.html - [similar]
26.7. 2to3 - Python 2 から 3 への自動コード変換 — Python 3.6.5 ドキュメント 5479
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... s function calls or statements, 2to3 cannot always read files containing the print function. When 2to3 det ... h the -p flag. Use -p to run fixers on code that already has had its print statements converted. The -o or ... て、既存の range() 呼び出しを list でラップします。 xreadlines ¶ for x in file.xreadlines() を for x in file ...
https://man.plustar.jp/python/library/2to3.html - [similar]
24.2. cmd --- 行指向のコマンドインタープリタのサポート — Python 3.6.5 ドキュメ... 5479
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... 便利です。 オプション引数 completekey は、補完キーの readline 名です。デフォルトは Tab です。 completekey が ... None でなく、 readline が利用できるならば、コマンド補完は自動的に行わ ... (これはクラス属性 intro をオーバーライドします)。 readline モジュールがロードされているなら、入力は自動的 ... 使います。偽ならば、 sys.stdout.write() と sys.stdin.readline() が使われます。 (これが意味するのは、 readlin ...
https://man.plustar.jp/python/library/cmd.html - [similar]
17.4. concurrent.futures -- 並列タスク実行 — Python 3.6.5 ドキュメント 5479
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... 3.2 で追加. ソースコード: Lib/concurrent/futures/thread.py および Lib/concurrent/futures/process.py concur ... 高水準のインタフェースを提供します。 非同期実行は ThreadPoolExecutor を用いてスレッドで実行することも、 Pro ... 行を表現する Future オブジェクトを返します。 with ThreadPoolExecutor ( max_workers = 1 ) as executor : futu ... formance compared to the default size of 1. With ThreadPoolExecutor , chunksize has no effect. バージョン ...
https://man.plustar.jp/python/library/concurrent.futures.html - [similar]
19.1.4. email.policy: ポリシーオブジェクト — Python 3.6.5 ドキュメント 5479
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... As an example, the following code could be used to read an email message from a file on disk and pass it t ... returned value is not 0 or None , and there are already a number of headers with the name name greater th ...
https://man.plustar.jp/python/library/email.policy.html - [similar]
10.2. functools --- 高階関数と呼び出し可能オブジェクトの操作 — Python 3.6.5 ド... 5479
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... . request . urlopen ( resource ) as s : return s . read () except urllib . error . HTTPError : return 'Not ...
https://man.plustar.jp/python/library/functools.html - [similar]
21.22. http.server --- HTTP サーバ — Python 3.6.5 ドキュメント 5479
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... します。 rfile ¶ An io.BufferedIOBase input stream, ready to read from the start of the optional input data ... or code, with message as an optional, short, human readable description of the error. The explain argument ...
https://man.plustar.jp/python/library/http.server.html - [similar]
PREV 1 2 3 4 5 6 7 8 9 10 11 12 13 NEXT