Python 3.6.5 ドキュメント 検索
Results of 1 - 10 of about 75 for length (0.003 sec.)
- 15.1. hashlib --- セキュアハッシュおよびメッセージダイジェスト — Python 3.6.5 ... 11947
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ
..._128() and shake_256() algorithms provide variable length digests with length_in_bits//2 up to 128 or 256 bi...security. As such, their digest methods require a length. Maximum length is not limited by the SHAKE algori...thm. shake. digest ( length ) ¶ Return the digest of the data passed to the up...te() method so far. This is a bytes object of size length which may contain bytes in the whole range from 0... - https://man.plustar.jp/python/library/hashlib.html - [similar]
- 6.7. readline --- GNU readline のインタフェース — Python 3.6.5 ドキュメント 11808
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ
...ます。 バージョン 3.5 で追加. readline. get_history_length ( ) ¶ readline. set_history_length ( length ) ¶ Se...この関数は存在します。 readline. get_current_history_length ( ) ¶ 履歴に現在ある項目の数を返します。 ( get_his...tory_length() は履歴ファイルに書かれる最大行数を返します。) re...as function(substitution, [matches], longest_match_length) once each time matches need to be displayed. 6.7.... - https://man.plustar.jp/python/library/readline.html - [similar]
- スライスオブジェクト (slice object) — Python 3.6.5 ドキュメント 11392
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python/C API リファ
...PySlice_GetIndices ( PyObject *slice , Py_ssize_t length , Py_ssize_t *start , Py_ssize_t *stop , Py_ssize_...インデクス値を取得します。このときシーケンスの長さを length と仮定します。 length よりも大きなインデクスになる...ySlice_GetIndicesEx ( PyObject *slice , Py_ssize_t length , Py_ssize_t *start , Py_ssize_t *stop , Py_ssize_...t *step , Py_ssize_t *slicelength ) ¶ PySlice_GetIndices() の便利な代替です。 slice... - https://man.plustar.jp/python/c-api/slice.html - [similar]
- 18.9. mmap --- メモリマップファイル — Python 3.6.5 ドキュメント 10294
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ
...mory)にマップするためには fileno として -1 を渡し、length を与えてください。 class mmap. mmap ( fileno , len...ァイルハンドル fileno によって指定されたファイルから length バイトをマップして、 mmap オブジェクトを生成します...。 length が現在のファイルサイズより大きな場合、ファイルサイ...ズは length を含む大きさにまで拡張されます。 length が 0 の場合... - https://man.plustar.jp/python/library/mmap.html - [similar]
- 19.1.4. email.policy: ポリシーオブジェクト — Python 3.6.5 ドキュメント 9738
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ
...> policy100 = policy . compat32 . clone ( max_line_length = 100 ) >>> policy80 = policy . compat32 . clone (...max_line_length = 80 ) >>> apolicy = policy100 + policy80 >>> apol...icy . max_line_length 80 >>> apolicy = policy80 + policy100 >>> apolicy.... max_line_length 100 class email.policy. Policy ( **kw ) ¶ This is... - https://man.plustar.jp/python/library/email.policy.html - [similar]
- 21.12. http.client --- HTTP プロトコルクライアント — Python 3.6.5 ドキュメント 9322
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ
...てはなりません。 If headers contains neither Content-Length nor Transfer-Encoding, but there is a request body...added automatically. If body is None , the Content-Length header is set to 0 for methods that expect a body...-like object that is not also a file , the Content-Length header is set to its length. Any other type of bod...eader will automatically be set instead of Content-Length. The encode_chunked argument is only relevant if T... - https://man.plustar.jp/python/library/http.client.html - [similar]
- 13.1. zlib --- gzip 互換の圧縮 — Python 3.6.5 ドキュメント 9183
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ
...ョン 3.3 で追加. Decompress. decompress ( data , max_length=0 ) ¶ data を展開し、少なくとも string の一部分に対...されることもあります。 If the optional parameter max_length is non-zero then the return value will be no longe...r than max_length . This may mean that not all of the compressed inp...compress() if decompression is to continue. If max_length is zero then the whole input is decompressed, and... - https://man.plustar.jp/python/library/zlib.html - [similar]
- 13.3. bz2 --- bzip2 圧縮のサポート — Python 3.6.5 ドキュメント 9058
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ
...ジェクトを用意してください。 decompress ( data , max_length=-1 ) ¶ data ( bytes-like object ) を展開し、未圧縮...press() 呼び出しの出力を全て連結したものです。 max_length が非負の場合、最大 max_length バイトの展開データを...できます。 入力データの全てが圧縮され返された ( max_length バイトより少ないためか max_length が負のため) 場合...ta 属性に保存されます。 バージョン 3.5 で変更: max_length パラメータが追加されました。 eof ¶ ストリーム終端記... - https://man.plustar.jp/python/library/bz2.html - [similar]
- 21.28. ipaddress --- IPv4/IPv6 操作ライブラリ — Python 3.6.5 ドキュメント 8780
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ
...al number of addresses in the network. prefixlen ¶ Length of the network prefix, in bits. hosts ( ) ¶ Return...etwork broadcast address. For networks with a mask length of 31, the network address and network broadcast a...nt values. prefixlen_diff is the amount our prefix length should be increased by. new_prefix is the desired...nt values. prefixlen_diff is the amount our prefix length should be decreased by. new_prefix is the desired... - https://man.plustar.jp/python/library/ipaddress.html - [similar]
- 引数の解釈と値の構築 — Python 3.6.5 ドキュメント 8224
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python/C API リファ
...ての # 型のフォーマット ( s# , y# , など) において、length 引数の型 (int か Py_ssize_t ) は Python.h を inclu...義することで制御します。マクロが定義されている場合、 length は int 型ではなく Py_ssize_t 型になります。この挙動...[const char *encoding, char **buffer, int *buffer_length] s# の変化形で、Unicode をキャラクタ型バッファにエ...e() はこのメモリ位置をバッファとして用い、 *buffer_length の初期値をバッファサイズとして用います。 PyArg_Par... - https://man.plustar.jp/python/c-api/arg.html - [similar]
