Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 31 - 40 of about 61 for buffer (0.019 sec.)
14.4. xdrlib --- XDR データのエンコードおよびデコード — Python 3.6.5 ドキュメン... 6740
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ンスタンスには以下のメソッドがあります: Packer. get_buffer ( ) ¶ 現在のパック処理用バッファを文字列で返します ... ) は注意して使わなければなりません。 Unpacker. get_buffer ( ) ¶ 現在のアンパック処理用データバッファを文字列 ...
https://man.plustar.jp/python/library/xdrlib.html - [similar]
What's New In Python 3.3 — Python 3.6.5 ドキュメント 6740
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho ... 大幅に改善されました。 新しい memoryview 実装が、Py_buffer 構造体内にフィールドを動的にアロケートする際に多数 ... た。 memoryview オブジェクトに、 PEP-3118 準拠の getbufferproc() が追加されています (訳注: バッファオブジェク ... ト構造体 (buffer object structure) 参照)。これはコンシューマの要求型 ... Krah in bpo-10181 .) 参考 PEP 3118 - Revising the Buffer Protocol PEP 393: 文字列の柔軟な表現 ¶ Unicode 文字 ...
https://man.plustar.jp/python/whatsnew/3.3.html - [similar]
bytearray オブジェクト — Python 3.6.5 ドキュメント 6667
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python/C API リファ ... yObject * PyByteArray_FromObject ( PyObject *o ) ¶ buffer protocol を実装した任意のオブジェクト o から、新し ...
https://man.plustar.jp/python/c-api/bytearray.html - [similar]
17.2. multiprocessing --- プロセスベースの並列処理 — Python 3.6.5 ドキュメント 6667
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... 例外の基底クラスです。 exception multiprocessing. BufferTooShort ¶ この例外は Connection.recv_bytes_into() ... すぎてメッセージが読み込めないことを示します。 e が BufferTooShort のインスタンスであるとすると、 e.args[0] は ... ーリングできることに注意してください。 send_bytes ( buffer [ , offset [ , size ] ] ) ¶ bytes-like object から ... としてバイトデータを送ります。 offset が指定されると buffer のその位置からデータが読み込まれます。 size が指定 ...
https://man.plustar.jp/python/library/multiprocessing.html - [similar]
6.8. rlcompleter --- GNU readline向け補完関数 — Python 3.6.5 ドキュメント 6667
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... < TAB PRESSED > readline.__doc__ readline.get_line_buffer( readline.read_init_file( readline.__file__ readli ...
https://man.plustar.jp/python/library/rlcompleter.html - [similar]
16.8. logging.handlers --- ロギングハンドラ — Python 3.6.5 ドキュメント 6595
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... われます。 MemoryHandler はより一般的な抽象クラス、 BufferingHandler のサブクラスです。この抽象クラスでは、ロ ... 理を行うものと想定されます。 class logging.handlers. BufferingHandler ( capacity ) ¶ 指定した許容量のバッファで ... yHandler class. The instance is initialized with a buffer size of capacity . If flushLevel is not specified, ... . If flushOnClose is specified as False , then the buffer is not flushed when the handler is closed. If not ...
https://man.plustar.jp/python/library/logging.handlers.html - [similar]
What's New In Python 3.0 — Python 3.6.5 ドキュメント 6595
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho ... それらのストリームで読み書きするには、 io.TextIOBase.buffer 属性を使う必要があります。 ファイル名は、API へは ... クトの背後にあるバイナリファイルオブジェクトには、 f.buffer でアクセスできます。(ただしエンコーディング・デコー ... 3118: 改訂版バッファプロトコル . 古いビルトインの buffer() は本当になくなりました; 新しいビルトイン memoryv ...
https://man.plustar.jp/python/whatsnew/3.0.html - [similar]
What's New In Python 3.2 — Python 3.6.5 ドキュメント 6595
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho ... f __main__:1: ResourceWarning: unclosed file <_io.BufferedWriter name='foo'> (Added by Antoine Pitrou and G ... moryview() と同様の機能を提供する新たなメソッド getbuffer() が追加されました。 このメソッドはコピーせずにデー ... , LOC_LEN = 34 , 7 , 11 >>> def change_location ( buffer , record_number , location ): ... start = record_n ... umber * REC_LEN + LOC_START ... buffer [ start : start + LOC_LEN ] = location >>> import ...
https://man.plustar.jp/python/whatsnew/3.2.html - [similar]
文字列の変換と書式化 — Python 3.6.5 ドキュメント 6537
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python/C API リファ ... に設定されます。 戻り値は変換後の文字列が格納された buffer へのポインタか、変換が失敗した場合は NULL です。呼 ...
https://man.plustar.jp/python/c-api/conversion.html - [similar]
3. Defining Extension Types: Assorted Topics — Python 3.6.5 ドキュメント 6537
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python インタプリタ ... ro ; /* Functions to access object as input/output buffer */ PyBufferProcs * tp_as_buffer ; /* Flags to defi ...
https://man.plustar.jp/python/extending/newtypes.html - [similar]
PREV 1 2 3 4 5 6 7 NEXT