Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 91 - 100 of about 135 for bytes (0.343 sec.)
19.2. json --- JSON エンコーダおよびデコーダ — Python 3.6.5 ドキュメント 5403
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ずに読み飛ばされます。 この json モジュールは常に、 bytes オブジェクトではなく、 str オブジェクトを生成します ... 換表 を使い、 s (JSON ドキュメントを含んでいる str , bytes , bytearray のいずれかのインスタンス) を Python オ ... ror が送出されます。 バージョン 3.6 で変更: s には bytes 型と bytearray 型も使えるようになりました。 入力エ ...
https://man.plustar.jp/python/library/json.html - [similar]
35.11. resource --- リソース使用状態の情報 — Python 3.6.5 ドキュメント 5403
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... 追加. resource. RLIMIT_SBSIZE ¶ The maximum size (in bytes) of socket buffer usage for this user. This limits ... で追加. resource. RLIMIT_SWAP ¶ The maximum size (in bytes) of the swap space that may be reserved or used by ...
https://man.plustar.jp/python/library/resource.html - [similar]
21.4. wsgiref --- WSGI ユーティリティとリファレンス実装 — Python 3.6.5 ドキュメ... 5403
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... を返しているだけです。 Headers オブジェクトに対して bytes() を呼ぶと、HTTP レスポンスヘッダとして送信するのに ... anscode CGI variables from os.environ to PEP 3333 "bytes in unicode" strings, returning a new dictionary. T ... e (i.e. Windows), or ones where the environment is bytes, but the system encoding used by Python to decode ...
https://man.plustar.jp/python/library/wsgiref.html - [similar]
メモリ管理 — Python 3.6.5 ドキュメント 5355
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python/C API リファ ... Do some I / O operation involving buf ... res = PyBytes_FromString ( buf ); free ( buf ); /* malloc'ed */ ... 要求が失敗した場合 NULL を返します。 Requesting zero bytes returns a distinct non- NULL pointer if possible, ... Requesting zero elements or elements of size zero bytes returns a distinct non- NULL pointer if possible, ... .Do some I/O operation involving buf... */ res = PyBytes_FromString ( buf ); PyMem_Free ( buf ); /* allocat ...
https://man.plustar.jp/python/c-api/memory.html - [similar]
拡張と埋め込み FAQ — Python 3.6.5 ドキュメント 5355
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python よくある質問 ... 関数 PyList_Size() と PyList_GetItem() があります。 bytes では、 PyBytes_Size() がその長さを返し、 PyBytes_A ... がその値へのポインタと長さを提供します。 Python の bytes オブジェクトは null を含むこともできるので、 C の ... 、まず最初にそれが NULL でないことを確かめた上で、 PyBytes_Check() 、 PyTuple_Check() 、 PyList_Check() などを ...
https://man.plustar.jp/python/faq/extending.html - [similar]
29.10. __future__ --- future 文の定義 — Python 3.6.5 ドキュメント 5355
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... a function unicode_literals 2.6.0a2 3.0 PEP 3112 : Bytes literals in Python 3000 generator_stop 3.5.0b1 3.7 ...
https://man.plustar.jp/python/library/__future__.html - [similar]
21.15. imaplib --- IMAP4 プロトコルクライアント — Python 3.6.5 ドキュメント 5355
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ponses; the response argument it is passed will be bytes . It should return bytes data that will be base64 ...
https://man.plustar.jp/python/library/imaplib.html - [similar]
9.6. random --- 擬似乱数を生成する — Python 3.6.5 ドキュメント 5355
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... 接使われます。 バージョン2 (デフォルト) では、 str , bytes , bytearray オブジェクトは int に変換され、そのビッ ... シーケンスを再現するために提供される) では、 str と bytes に対して適用されるアルゴリズムは、より狭い範囲のシ ...
https://man.plustar.jp/python/library/random.html - [similar]
7. 入力と出力 — Python 3.6.5 ドキュメント 5355
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python チュートリア ... データを読み出して、文字列 (テキストモードの場合) か bytes オブジェクト (バイナリーモードの場合) として返しま ... 換しなければなりません -- 文字列 (テキストモード) と bytes オブジェクト (バイナリーモード) のいずれかです: >> ...
https://man.plustar.jp/python/tutorial/inputoutput.html - [similar]
22.5. chunk --- IFFチャンクデータの読み込み — Python 3.6.5 ドキュメント 5307
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... タを読み込みます。チャンクの最後に行き着いたら、空の bytes オブジェクトを返します。 skip ( ) ¶ チャンクの最後 ...
https://man.plustar.jp/python/library/chunk.html - [similar]
PREV 1 2 3 4 5 6 7 8 9 10 11 12 13 14 NEXT