Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 1 - 10 of about 18 for unsigned (0.008 sec.)
整数型オブジェクト (integer object) — Python 3.6.5 ドキュメント 14292
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python/C API リファ ... ython の挙動は未定義です :-) PyObject * PyLong_FromUnsignedLong ( unsigned long v ) ¶ Return value: New refere ... nce. Cの unsigned long から新たな PyLongObject オブジェクトを生成して ... 敗のときには NULL を返します。 PyObject * PyLong_FromUnsignedLongLong ( unsigned long long v ) ¶ Return value: N ... ew reference. C の unsigned long long 型から新たな PyLongObject オブジェクトを ...
https://man.plustar.jp/python/c-api/long.html - [similar]
引数の解釈と値の構築 — Python 3.6.5 ドキュメント 11599
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python/C API リファ ... コードを使っているものと仮定します。 数 ¶ b ( int ) [unsigned char] Python の非負の整数を、 C の unsigned char 型 ... の小さな符号無し整数に変換します。 B ( int ) [unsigned char] Python の整数を、オーバフローチェックを行わず ... に、 C の unsigned char 型の小さな整数に変換します。 h ( int ) [short ... 整数を、 C の short int 型に変換します。 H ( int ) [unsigned short int] Python の整数を、オーバフローチェックを ...
https://man.plustar.jp/python/c-api/arg.html - [similar]
Argument Clinic How-To — Python 3.6.5 ドキュメント 8990
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python HOWTO » Argu ... d NoneType to this set. bitwise Only supported for unsigned integers. The native integer value of this Python ... c behavior. For example, currently you cannot call unsigned_short without also specifying bitwise=True . Altho ... n the right is the text you'd replace it with. 'B' unsigned_char(bitwise=True) 'b' unsigned_char 'c' char 'C' ... earray, str}, zeroes=True) 'f' float 'h' short 'H' unsigned_short(bitwise=True) 'i' int 'I' unsigned_int(bitwi ...
https://man.plustar.jp/python/howto/clinic.html - [similar]
16.16. ctypes --- Pythonのための外部関数ライブラリ — Python 3.6.5 ドキュメント 8990
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... char wchar_t 1文字の文字列 c_byte char int c_ubyte unsigned char int c_short short int c_ushort unsigned short ... int c_int int int c_uint unsigned int int c_long long int c_ulong unsigned long int ... _longlong __int64 または long long int c_ulonglong unsigned __int64 または unsigned long long int c_size_t siz ... バージョン 3.2 で追加. class ctypes. c_ubyte ¶ C の unsigned char データ型を表し、小さな整数として値を解釈します ...
https://man.plustar.jp/python/library/ctypes.html - [similar]
共通のオブジェクト構造体 (common object structure) — Python 3.6.5 ドキュメント 8905
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python/C API リファ ... JECT_EX PyObject * T_CHAR char T_BYTE char T_UBYTE unsigned char T_UINT unsigned int T_USHORT unsigned short T ... _ULONG unsigned long T_BOOL char T_LONGLONG long long T_ULONGLONG ...
https://man.plustar.jp/python/c-api/structures.html - [similar]
8.7. array --- 効率のよい数値アレイ — Python 3.6.5 ドキュメント 8905
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... 小サイズ (バイト単位) 注釈 'b' signed char int 1 'B' unsigned char int 1 'u' Py_UNICODE Unicode文字(unicode型) 2 ... (1) 'h' signed short int 2 'H' unsigned short int 2 'i' signed int int 2 'I' unsigned int ... int 2 'l' signed long int 4 'L' unsigned long int 4 'q' signed long long int 8 (2) 'Q' unsi ...
https://man.plustar.jp/python/library/array.html - [similar]
7.1. struct --- バイト列をパックされたバイナリデータとして解釈する — Python 3.6... 8750
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... 長さ 1 のバイト列 1 b signed char 整数 1 (1),(3) B unsigned char 整数 1 (3) ? _Bool 真偽値型(bool) 1 (1) h sho ... rt 整数 2 (3) H unsigned short 整数 2 (3) i int 整数 4 (3) I unsigned int 整 ... 数 4 (3) l long 整数 4 (3) L unsigned long 整数 4 (3) q long long 整数 8 (2), (3) Q unsi ... トされていません: たいていのマシンでは、保存するのに unsigned short が使えますが、数学の演算には使えません。 詳し ...
https://man.plustar.jp/python/library/struct.html - [similar]
バイトオブジェクト — Python 3.6.5 ドキュメント 7978
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python/C API リファ ... バイト。 %d int C の printf("%d") と厳密に同じ。 %u unsigned int C の printf("%u") と厳密に同じ。 %ld long C の ... printf("%ld") と厳密に同じ。 %lu unsigned long C の printf("%lu") と厳密に同じ。 %zd Py_ssiz ...
https://man.plustar.jp/python/c-api/bytes.html - [similar]
20.7. xml.dom.minidom --- 最小限の DOM の実装 — Python 3.6.5 ドキュメント 7824
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... いえ、これは実行時には強制されません。 short int 、 unsigned int 、 unsigned long long 、および boolean 型は、全 ...
https://man.plustar.jp/python/library/xml.dom.minidom.html - [similar]
型オブジェクト — Python 3.6.5 ドキュメント 7652
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python/C API リファ ... プの場合は含みません。その他の場合には偽を返します。 unsigned int PyType_ClearCache ( ) ¶ 内部の検索キャッシュを ...
https://man.plustar.jp/python/c-api/type.html - [similar]
PREV 1 2 NEXT