Python 3.6.5 ドキュメント 検索
Results of 1 - 10 of about 22 for memoryview (0.007 sec.)
- memoryview オブジェクト — Python 3.6.5 ドキュメント 15874
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python/C API リファ
...ュアル » 具象オブジェクト (concrete object) レイヤ » memoryview オブジェクト ¶ memoryview オブジェクトは、他のオブ...ルの バッファのインターフェース です。 PyObject * PyMemoryView_FromObject ( PyObject *obj ) ¶ バッファインタフェー...スを提供するオブジェクトからmemoryview オブジェクトを生成します。もし obj が書き込み可能な...バッファのエクスポートをサポートするなら、その memoryview オブジェクトは読み書き可能です。そうでなければ読出... - https://man.plustar.jp/python/c-api/memoryview.html - [similar]
- 4. 組み込み型 — Python 3.6.5 ドキュメント 9780
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ
...情報は、 バイナリシーケンス型 --- bytes, bytearray, memoryview や バッファプロトコル (buffer Protocol) を参照して...4.8. バイナリシーケンス型 --- bytes , bytearray , memoryview ¶ バイナリデータを操作するためのコア組み込み型は b...無くアクセスするための バッファプロトコル を利用する memoryview でサポートされています。 array モジュールは、32 ビ...461 . バージョン 3.5 で追加. 4.8.5. メモリビュー ¶ memoryview オブジェクトは、Python コードが バッファプロトコル... - https://man.plustar.jp/python/library/stdtypes.html - [similar]
- What's New in Python 2.7 — Python 3.6.5 ドキュメント 8535
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho
...指定子 で解説されている新しい "," フォーマット指定子 memoryview オブジェクト importlib モジュールの小さいサブセット...2.7 by Alexandre Vassalotti; bpo-1967 . PEP 3137: memoryview オブジェクト ¶ memoryview オブジェクトは、他のオブ...わせた view を提供します。 >>> import string >>> m = memoryview ( string . letters ) >>> m <memory at 0x37f850> >>...') >>> m2 = m [ 0 : 26 ] # Slicing returns another memoryview >>> m2 <memory at 0x37f080> view の内容は bytes 型... - https://man.plustar.jp/python/whatsnew/2.7.html - [similar]
- スライスオブジェクト (slice object) — Python 3.6.5 ドキュメント 8131
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python/C API リファ
...プタオブジェクト (descriptor object) 次のトピックへ memoryview オブジェクト ナビゲーション 索引 モジュール | 次へ... - https://man.plustar.jp/python/c-api/slice.html - [similar]
- 26.7. 2to3 - Python 2 から 3 への自動コード変換 — Python 3.6.5 ドキュメント 8131
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ
...asestring を str に変換します。 buffer ¶ buffer を memoryview に変換します。 memoryview API は buffer と似ている... - https://man.plustar.jp/python/library/2to3.html - [similar]
- 7. バイナリデータ処理 — Python 3.6.5 ドキュメント 8131
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ
...加えて、 バイナリシーケンス型 --- bytes, bytearray, memoryview に書かれているPythonビルトインデータ型についても参... - https://man.plustar.jp/python/library/binary.html - [similar]
- 具象オブジェクト (concrete object) レイヤ — Python 3.6.5 ドキュメント 8063
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python/C API リファ
...スオブジェクト (slice object) Ellipsis オブジェクト memoryview オブジェクト 弱参照オブジェクト カプセル ジェネレー... - https://man.plustar.jp/python/c-api/concrete.html - [similar]
- 弱参照オブジェクト — Python 3.6.5 ドキュメント 8063
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python/C API リファ
...n , パラメタ , 呼び出し , reference 前のトピックへ memoryview オブジェクト 次のトピックへ カプセル ナビゲーション... - https://man.plustar.jp/python/c-api/weakref.html - [similar]
- 2. 組み込み関数 — Python 3.6.5 ドキュメント 8063
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ
...complex() hasattr() max() round() delattr() hash() memoryview() set() abs ( x ) ¶ 数の絶対値を返します。引数は整...れます。 バイナリシーケンス型 --- bytes, bytearray, memoryview と bytearray オブジェクト も参照してください。 cla...ださい。 バイナリシーケンス型 --- bytes, bytearray, memoryview , バイトオブジェクト , bytes と bytearray の操作 も...バージョン 3.4 で追加: default キーワード専用引数。 memoryview ( obj ) 与えられたオブジェクトから作られた "メモリ... - https://man.plustar.jp/python/library/functions.html - [similar]
- What's New In Python 3.3 — Python 3.6.5 ドキュメント 8063
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho
...ト ¶ PEP 3118 の実装が大幅に改善されました。 新しい memoryview 実装が、Py_buffer 構造体内にフィールドを動的にアロ...り誤った結果を返していた多数の関数が修正されました。 memoryview オブジェクトに、 PEP-3118 準拠の getbufferproc() が...スがサポートされています。たとえば負の step を与えて memoryview を逆順に並べ替えることが O(1) オーダで出来るように...タプルです。 フォーマット 'B' (unsigned bytes) での memoryview 要素へのアクセスは整数を返すようになりました (stru... - https://man.plustar.jp/python/whatsnew/3.3.html - [similar]
