Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 41 - 50 of about 135 for bytes (0.105 sec.)
12.6. sqlite3 --- SQLite データベースに対する DB-API 2.0 インタフェース — Pytho... 6077
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... e , callable ) ¶ Registers a callable to convert a bytestring from the database into a custom Python type. ... 引数に Python の値を受け取り、int, float, str または bytes のいずれかの型の値を返さなければなりません。 sqlit ... n can return any of the types supported by SQLite: bytes, str, int, float and None . 例: import sqlite3 imp ... d can return any of the types supported by SQLite: bytes, str, int, float and None . 例: import sqlite3 cla ...
https://man.plustar.jp/python/library/sqlite3.html - [similar]
29.1. sys --- システムパラメータと関数 — Python 3.6.5 ドキュメント 6077
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... tdout . write ( text ) except UnicodeEncodeError : bytes = text . encode ( sys . stdout . encoding , 'backs ... dout , 'buffer' ): sys . stdout . buffer . write ( bytes ) else : text = bytes . decode ( sys . stdout . en ... ite -s no_site -S ignore_environment -E verbose -v bytes_warning -b quiet -q hash_randomization -R バージョ ... ding used to convert between Unicode filenames and bytes filenames. For best compatibility, str should be u ...
https://man.plustar.jp/python/library/sys.html - [similar]
7.2. codecs --- codec レジストリと基底クラス — Python 3.6.5 ドキュメント 6029
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... 、一部のモジュール機能は テキストエンコーディング か bytes へのエンコードのみに制限されています。 このモジュー ... されます。 この関数では、コーデックはエンコードする bytes オブジェクトを受け付ける必要があります。 従って、 ... タプルを返す必要があります。代替文字列は str または bytes のいずれかにすることができます。代替文字列がバイト ... ングとバイト列からバイト列への codec では、 input は bytes オブジェクト、または読み出し専用のバッファインタフ ...
https://man.plustar.jp/python/library/codecs.html - [similar]
17.2. multiprocessing --- プロセスベースの並列処理 — Python 3.6.5 ドキュメント 5981
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ssing. BufferTooShort ¶ この例外は Connection.recv_bytes_into() によって発生し、バッファーオブジェクトが小さ ... 同時にポーリングできることに注意してください。 send_bytes ( buffer [ , offset [ , size ] ] ) ¶ bytes-like ob ... と、 ValueError 例外が発生するかもしれません。 recv_bytes ( [ maxlength ] ) ¶ コネクションの相手側から送られ ... を送出していました。今では OSError の別名です。 recv_bytes_into ( buffer [ , offset ] ) ¶ コネクションの相手側 ...
https://man.plustar.jp/python/library/multiprocessing.html - [similar]
13.3. bz2 --- bzip2 圧縮のサポート — Python 3.6.5 ドキュメント 5921
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... に、引数 filename には実際のファイル名 ( str または bytes オブジェクト) か、読み書きする既存のファイルオブジ ... リモードでオープンします。 filename が str あるいは bytes オブジェクトの場合、それを名前とするファイルを直接 ... さい。 decompress ( data , max_length=-1 ) ¶ data ( bytes-like object ) を展開し、未圧縮のデータを bytes で返 ...
https://man.plustar.jp/python/library/bz2.html - [similar]
2. 組み込み関数 — Python 3.6.5 ドキュメント 5921
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... () bytearray() filter() issubclass() pow() super() bytes() float() iter() print() tuple() callable() format ... 列に対する普通のメソッドの大半を備えています。また、 bytes 型が持つメソッドの大半も備えています(see bytes... 0 の配列が生成されます。 バイナリシーケンス型 --- bytes, bytearray, memoryview と bytearray オブジェクト も ... 参照してください。 class bytes ( [ source [ , encoding [ , errors ] ] ] ) 範囲 0 ...
https://man.plustar.jp/python/library/functions.html - [similar]
15.2. hmac --- メッセージ認証のための鍵付きハッシュ化 — Python 3.6.5 ドキュメン... 5921
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... hmac オブジェクトを返します。 key は秘密鍵を与える bytes または bytearray オブジェクトです。 msg が与えられ ... トラクターです。 バージョン 3.4 で変更: 引数 key に bytes または bytearray オブジェクトを渡せるようになりまし ... exdigest() が返したような ASCII のみの) str または bytes-like object のどちらか一方。 注釈 a と b が異なる長 ...
https://man.plustar.jp/python/library/hmac.html - [similar]
32.7. tokenize --- Pythonソースのためのトークナイザ — Python 3.6.5 ドキュメント 5921
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... to the function should return one line of input as bytes. このジェネレータは次の5要素のタプルを返します; ト ... t indicates the encoding used to decode the source bytes into text. The first token returned by tokenize() ... )のようなものは変わることがあり得ます。 It returns bytes, encoded using the ENCODING token, which is the fi ... エンコーディング (文字列として) と、読み込んだ行を (bytes からデコードされないままの状態で) 返します。 UTF-8 ...
https://man.plustar.jp/python/library/tokenize.html - [similar]
3. データモデル — Python 3.6.5 ドキュメント 5873
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 言語リファレ ... de() はテキストエンコーディングを使うことで str を bytes に変換するために使うことができます。また、 bytes.d ... 素の全くない丸括弧の対を作ると空のタプルになります。 bytes bytes オブジェクトは不変な配列です。要素は 8-bit バ ... 56 の範囲の整数で表現されます。 ( b'abc' のような) bytes リテラルや組み込みの bytes() コンストラクタを使って ... bytes オブジェクトを作成できます。また、 bytes オブジェク ...
https://man.plustar.jp/python/reference/datamodel.html - [similar]
オブジェクトプロトコル (object protocol) — Python 3.6.5 ドキュメント 5825
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python/C API リファ ... ーションを含むようになりました。 PyObject * PyObject_Bytes ( PyObject *o ) ¶ オブジェクト o のバイト列表現を計 ... 算します。失敗すると NULL を返し、成功すると bytes オブジェクトを返します。 o が整数でないときの、 Py ... thon 式 bytes(o) と同じです。 bytes(o) と違って、 o が整数のとき ... には、ゼロで初期化された bytes オブジェクトを返すのではなく TypeError が送出されま ...
https://man.plustar.jp/python/c-api/object.html - [similar]
PREV 1 2 3 4 5 6 7 8 9 10 11 12 13 14 NEXT