Python 3.6.5 ドキュメント 検索
Results of 1 - 5 of about 5 for PyBytes (0.012 sec.)
- バイトオブジェクト — Python 3.6.5 ドキュメント 12795
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python/C API リファ
...
を指定して呼び出されると、 TypeError を送出します。 PyBytesObject ¶ この PyObject のサブタイプは、Python バイト...
オブジェクトを表します。 PyTypeObject PyBytes_Type ¶ この PyTypeObject のインスタンスは、Python...
Pythonレイヤの bytes と同じオブジェクトです。 int PyBytes_Check ( PyObject *o ) ¶ オブジェクト o がバイトオブ...
ブタイプのインスタンスである場合に真を返します。 int PyBytes_CheckExact ( PyObject *o ) ¶ オブジェクト o がバイ...
- https://man.plustar.jp/python/c-api/bytes.html - [similar]
- Python 3 への拡張モジュール移植 — Python 3.6.5 ドキュメント 8861
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python HOWTO » Pyth
...
昔の 8 ビット文字列タイプは bytes() になり、C 関数は PyBytes_* と呼ばれます。Python 2.6 以降には互換性ヘッダ by...
tesobject.h が用意されており、 PyBytes 系の名前を PyString 系にマップしています。Python 3...
性を最大限確保するには、 PyUnicode は文字データに、 PyBytes はバイナリデータにだけ使うべきです。ほかにも、Pyth...
on 3 の PyBytes と PyUnicode は Python 2 の PyString と PyUnicode...
- https://man.plustar.jp/python/howto/cporting.html - [similar]
- メモリ管理 — Python 3.6.5 ドキュメント 8181
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python/C API リファ
...
.. Do some I / O operation involving buf ... res = PyBytes_FromString ( buf ); free ( buf ); /* malloc'ed */...
...Do some I/O operation involving buf... */ res = PyBytes_FromString ( buf ); PyMem_Free ( buf ); /* allocat...
...Do some I/O operation involving buf... */ res = PyBytes_FromString ( buf ); PyMem_Del ( buf ); /* allocate...
- https://man.plustar.jp/python/c-api/memory.html - [similar]
- 拡張と埋め込み FAQ — Python 3.6.5 ドキュメント 8181
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python よくある質問
...
ze() と PyList_GetItem() があります。 bytes では、 PyBytes_Size() がその長さを返し、 PyBytes_AsStringAndSize(...
は、まず最初にそれが NULL でないことを確かめた上で、 PyBytes_Check() 、 PyTuple_Check() 、 PyList_Check() などを...
- https://man.plustar.jp/python/faq/extending.html - [similar]
- What's New in Python 2.6 — Python 3.6.5 ドキュメント 7887
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho
...
の名前を変えます。Python 2.x での PyStringObject は PyBytesObject になります。Python 2.6 では PyBytesObject()...
, PyBytes_Check() , PyBytes_FromStringAndSize() をはじめとす...
- https://man.plustar.jp/python/whatsnew/2.6.html - [similar]
PREV
1
NEXT