Python 3.6.5 ドキュメント 検索
Results of 1 - 10 of about 103 for size (0.007 sec.)
- 15.1. hashlib --- セキュアハッシュおよびメッセージダイジェスト — Python 3.6.5 ... 12638
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ
...\x84:\xa6\xaf\x0c\x95\x0fK\x94\x06' >>> m . digest_size 32 >>> m . block_size 64 もっと簡潔に書くと、このよ...、次のような定数属性が用意されています: hash. digest_size ¶ 生成されたハッシュのバイト数。 hash. block_size...れたデータのダイジェスト値を返します。これは digest_size と同じ長さの、0 から 255 の範囲全てを含み得るバイト...update() method so far. This is a bytes object of size length which may contain bytes in the whole range... - https://man.plustar.jp/python/library/hashlib.html - [similar]
- Unicode オブジェクトと codec — Python 3.6.5 ドキュメント 11889
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python/C API リファ
...きに特に起きやすいです。 バージョン 3.3 で追加. Py_ssize_t PyUnicode_GET_LENGTH ( PyObject *o ) ¶ Unicode 文...void PyUnicode_WRITE ( int kind , void *data , Py_ssize_t index , Py_UCS4 value ) ¶ 正統な表現形式となって..._UCS4 PyUnicode_READ ( int kind , void *data , Py_ssize_t index ) ¶ 正統な表現形式となっている ( PyUnicode...加. Py_UCS4 PyUnicode_READ_CHAR ( PyObject *o , Py_ssize_t index ) ¶ Unicode オブジェクト o から文字を読み取... - https://man.plustar.jp/python/c-api/unicode.html - [similar]
- 27.7. tracemalloc --- メモリ割り当ての追跡 — Python 3.6.5 ドキュメント 11102
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ
...Top 10 ] < frozen importlib . _bootstrap > : 716 : size = 4855 KiB , count = 39328 , average = 126 B < fro...zen importlib . _bootstrap > : 284 : size = 521 KiB , count = 3199 , average = 167 B / usr /.../ python3 .4 / collections / __init__ . py : 368 : size = 244 KiB , count = 2315 , average = 108 B / usr /...lib / python3 .4 / unittest / case . py : 381 : size = 185 KiB , count = 779 , average = 243 B / usr /... - https://man.plustar.jp/python/library/tracemalloc.html - [similar]
- 16.2. io --- ストリームを扱うコアツール — Python 3.6.5 ドキュメント 10418
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ
...準のモジュールインターフェイス ¶ io. DEFAULT_BUFFER_SIZE ¶ このモジュールの buffered I/O クラスで利用される...を表す整数です。可能であれば、 open() は file の blksize ( os.stat() で取得される) を利用します。 io. open...場合は read() は OSError を発生させます。 readline ( size=-1 ) ¶ ストリームから 1 行読み込んで返します。もし...size が指定された場合、最大で size バイトが読み込まれま... - https://man.plustar.jp/python/library/io.html - [similar]
- メモリ管理 — Python 3.6.5 ドキュメント 10224
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python/C API リファ
...す。 バージョン 3.4 で追加. void* PyMem_RawMalloc ( size_t n ) ¶ n バイトを割り当て、そのメモリを指す void*...かなる初期化も行われません。 void* PyMem_RawCalloc ( size_t nelem , size_t elsize ) ¶ 各要素が elsize バイト...ョン 3.5 で追加. void* PyMem_RawRealloc ( void *p , size_t n ) ¶ p が指すメモリブロックを n バイトにリサイズ...から pymalloc になりました。 void* PyMem_Malloc ( size_t n ) ¶ n バイトを割り当て、そのメモリを指す void*... - https://man.plustar.jp/python/c-api/memory.html - [similar]
- 文字列の変換と書式化 — Python 3.6.5 ドキュメント 9772
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python/C API リファ
...出力のための関数群。 int PyOS_snprintf ( char *str , size_t size , const char *format , ... ) ¶ 書式文字列 f...ormat と追加の引数から、 size バイトを超えない文字列を str に出力します。 Unix m...参照してください。 int PyOS_vsnprintf ( char *str , size_t size , const char *format , va_list va ) ¶ 書式文...字列 format と可変長引数リスト va から、 size バイトを超えない文字列を str に出力します。 Unix m... - https://man.plustar.jp/python/c-api/conversion.html - [similar]
- 13.1. zlib --- gzip 互換の圧縮 — Python 3.6.5 ドキュメント 9630
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ
...alue is DEFLATED . The wbits argument controls the size of the history buffer (or the "window size") used...): +9 to +15: The base-two logarithm of the window size, which therefore ranges between 512 and 32768. Lar...15: Uses the absolute value of wbits as the window size logarithm, while producing a raw output stream wit...5): Uses the low 4 bits of the value as the window size logarithm, while including a basic gzip header and... - https://man.plustar.jp/python/library/zlib.html - [similar]
- オペレーティングシステム関連のユーティリティ — Python 3.6.5 ドキュメント 7900
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python/C API リファ
...です。 wchar_t* Py_DecodeLocale ( const char* arg , size_t *size ) ¶ surrogateescape エラーハンドラ を使って...string, use PyMem_RawFree() to free the memory. If size is not NULL , write the number of wide characters...excluding the null character into *size . デコードもしくはメモリ確保でエラーが起きると NUL...L を返します。 size が NULL でない場合は、メモリエラーのときは (size_t... - https://man.plustar.jp/python/c-api/sys.html - [similar]
- Download — Python 3.6.5 ドキュメント 7603
- ナビゲーション 索引 モジュール | Python » 3.6.5 ドキュメント » Download Python 3.6.5 Documentati
...ks in this table. The numbers in the table are the size of the download files in megabytes. Format Packed...as .zip Packed as .tar.bz2 PDF (US-Letter paper size) Download (ca. 13 MB) Download (ca. 13 MB) PDF (A4...paper size) Download (ca. 13 MB) Download (ca. 13 MB) HTML Do...docs@python.org . 関連キーワード: download , tar , size , ドキュメント , bz , documentation , These , Info... - https://man.plustar.jp/python/download.html - [similar]
- 共通のオブジェクト構造体 (common object structure) — Python 3.6.5 ドキュメント 7164
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python/C API リファ
...なりません。 PyVarObject ¶ PyObject を拡張して、 ob_size フィールドを追加したものです。 この構造体は、 長さ...セスするには Py_REFCNT マクロ、 Py_TYPE マクロ、 Py_SIZE マクロを使わなければなりません。 PyObject_HEAD ¶ 可...開されます: ((( PyObject * )( o )) -> ob_refcnt ) Py_SIZE ( o ) ¶ Python オブジェクトの ob_size メンバにアク...ように展開されます: ((( PyVarObject * )( o )) -> ob_size ) PyObject_HEAD_INIT ( type ) ¶ 新しい PyObject 型... - https://man.plustar.jp/python/c-api/structures.html - [similar]
