Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 11 - 20 of about 46 for struct (0.010 sec.)
35.9. fcntl --- fcntl および ioctl システムコール — Python 3.6.5 ドキュメント 8421
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... の整数の戻り値になります。引数が bytes の場合には、 struct.pack() で作られるようなバイナリの構造体を表します。 ... す。 以下に例を示します: >>> import array , fcntl , struct , termios , os >>> os . getpgrp () 13341 >>> struc ... (全ての SVR4 互換システムでの) 例を示します: import struct , fcntl , os f = open ( ... ) rv = fcntl . fcntl ( ... f , fcntl . F_SETFL , os . O_NDELAY ) lockdata = struct . pack ( 'hhllhh' , fcntl . F_WRLCK , 0 , 0 , 0 , ...
https://man.plustar.jp/python/library/fcntl.html - [similar]
型オブジェクト — Python 3.6.5 ドキュメント 7902
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python/C API リファ ... intobjargproc, intintobjargproc, objobjargproc, destructor, freefunc, printfunc, getattrfunc, getattrofunc, ... 間を省くために、ここでは定義を繰り返します: typedef struct _typeobject { PyObject_VAR_HEAD const char * tp_na ... / /* Methods to implement standard operations */ destructor tp_dealloc ; printfunc tp_print ; getattrfunc tp ... ; /* Attribute descriptor and subclassing stuff */ struct PyMethodDef * tp_methods ; struct PyMemberDef * tp ...
https://man.plustar.jp/python/c-api/typeobj.html - [similar]
7. バイナリデータ処理 — Python 3.6.5 ドキュメント 7643
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ビルトインデータ型についても参照してください。 7.1. struct --- バイト列をパックされたバイナリデータとして解釈 ... r --- GNU readline向け補完関数 次のトピックへ 7.1. struct --- バイト列をパックされたバイナリデータとして解釈 ...
https://man.plustar.jp/python/library/binary.html - [similar]
What's New in Python 2.6 — Python 3.6.5 ドキュメント 7460
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho ... に乗り換えました。また、ドキュメントは LaTeX から reStructuredText に変換しました。 新しい課題トラッカー: Rou ... キュメンテーションフォーマット: Sphinx を使っての reStructuredText ¶ Python のドキュメンテーションは、そのプロ ... 変換を経由することで健在です。入力のフォーマットは reStructuredText です。これはカスタムな拡張とディレクティブ ... とコードです。 Docutils 縁の下の力持ちになっている reStructuredText のパーサとツールセットです。 PEP 343: "wit ...
https://man.plustar.jp/python/whatsnew/2.6.html - [similar]
16.16. ctypes --- Pythonのための外部関数ライブラリ — Python 3.6.5 ドキュメント 7383
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... 構造体と共用体は ctypes モジュールに定義されている Structure および Union ベースクラスからの派生クラスでなけ ... ています: >>> from ctypes import * >>> class POINT ( Structure ): ... _fields_ = [( "x" , c_int ), ... ( "y" , ... の POINT を持つ RECT 構造体です。: >>> class RECT ( Structure ): ... _fields_ = [( "upperleft" , POINT ), ... ... ライメントとバイトオーダー ¶ デフォルトでは、構造体 (Structure) と共用体(Union) のフィールドは C コンパイラが行 ...
https://man.plustar.jp/python/library/ctypes.html - [similar]
11. 標準ライブラリミニツアー --- その 2 — Python 3.6.5 ドキュメント 7292
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python チュートリア ... とができます。 11.3. バイナリデータレコードの操作 ¶ struct モジュールでは、様々な長さのバイナリレコード形式を ... がリトルエンディアンであることを示しています: import struct with open ( 'myfile.zip' , 'rb' ) as f : data = f ... show the first 3 file headers start += 14 fields = struct . unpack ( '<IIIHH' , data [ start : start + 16 ]) ...
https://man.plustar.jp/python/tutorial/stdlib2.html - [similar]
What's New in Python 2.5 — Python 3.6.5 ドキュメント 7292
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho ... Python's dictionary type. In 2.5 the internal data structure has been customized for implementing sets, and ... ad*() method. (Implemented by Thomas Wouters.) The struct module now compiles structure format strings into ... 。 pack() , unpack() メソッドでフォーマット文字列を Struct オブジェクトにコンパイルすることで、 struct がより ... pack() , unpack() 関数もそのまま使えます; それらは Struct オブジェクトを作ってキャッシュします。あるいは Str ...
https://man.plustar.jp/python/whatsnew/2.5.html - [similar]
2. 組み込み関数 — Python 3.6.5 ドキュメント 7124
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ルファベット順に並べられています。例えば: >>> import struct >>> dir () # show the names in the module namespac ... e ['__builtins__', '__name__', 'struct'] >>> dir ( struct ) # show the names in the struc ... t module # doctest: +SKIP ['Struct', '__all__', '__builtins__', '__cached__', '__doc_ ... ss int ( x , base=10 ) Return an integer object constructed from a number or string x , or return 0 if no ar ...
https://man.plustar.jp/python/library/functions.html - [similar]
What's New In Python 3.3 — Python 3.6.5 ドキュメント 7124
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho ... す (訳注: バッファオブジェクト構造体 (buffer object structure) 参照)。これはコンシューマの要求型をチェックしま ... レイアウトについて説明されています。 フィーチャー ¶ struct モジュールの構文の全ての native 書式指定文字 をサポ ... view 要素へのアクセスは整数を返すようになりました (struct モジュールでの構文に従っています)。bytes オブジェク ... ようになり、また、全ての配列要素は値で比較されます。struct モジュールの構文の全てのフォーマット文字でサポート ...
https://man.plustar.jp/python/whatsnew/3.3.html - [similar]
ライブラリと拡張 FAQ — Python 3.6.5 ドキュメント 7033
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python よくある質問 ... しますか? ¶ 複雑なバイナリデータ形式の読み書きには、 struct モジュールを使うのが一番です。これでバイナリデータ ... ビッグエンディアンフォーマットで読み込みます: import struct with open ( filename , "rb" ) as f : s = f . read ... ( 8 ) x , y , z = struct . unpack ( ">hhl" , s ) フォーマット中の '>' はデー ...
https://man.plustar.jp/python/faq/library.html - [similar]
PREV 1 2 3 4 5 NEXT