Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 21 - 30 of about 46 for struct (0.070 sec.)
22.1. audioop --- 生の音声データを操作する — Python 3.6.5 ドキュメント 7033
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... を送るべきではないことに注意してください。 もし、 struct.Struct をバイナリでの状態保存に使いたい場合は、最初 ...
https://man.plustar.jp/python/library/audioop.html - [similar]
8.1. datetime --- 基本的な日付型および時間型 — Python 3.6.5 ドキュメント 7033
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... timetuple ( ) ¶ time.localtime() が返す形式の time.struct_time を返します。時間、分、および秒は 0 で、DST フ ... になります。 d.timetuple() は次の値と同値です: time.struct_time((d.year, d.month, d.day, 0, 0, 0, d.weekday() ... timetuple ( ) ¶ time.localtime() が返す形式の time.struct_time を返します。 d.timetuple() は time.struct_tim ... t() を引いて UTC 時刻に正規化され、その時刻が time.struct_time として返されます。 tm_isdst は 0 に強制されま ...
https://man.plustar.jp/python/library/datetime.html - [similar]
4. 組み込み型 — Python 3.6.5 ドキュメント 7033
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ( v [ 1 : 4 ]) b'bce' もしメモリビューの format が struct モジュールによって定義されているネイティブのフォー ... yview assignment: lvalue and rvalue have different structures >>> v [ 2 : 6 ] = b 'spam' >>> data bytearray( ... ew と PEP 3118 エクスポーターは、 shape が同じで、 struct のフォーマットで解釈したときの値が同じ場合に同値に ... なります。 tolist() がサポートしている struct フォーマットの一部では、 v.tolist() == w.tolist() ...
https://man.plustar.jp/python/library/stdtypes.html - [similar]
What's New In Python 3.6 — Python 3.6.5 ドキュメント 7033
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho ... ncurrent.futures ¶ The ThreadPoolExecutor class constructor now accepts an optional thread_name_prefix argum ... API, enabled via the policy keyword to various constructors, is no longer provisional. The email documentat ... closed a ResourceWarning will be emitted in its destructor. (Contributed by Serhiy Storchaka in bpo-25994 . ... d. (Contributed by Steven D'Aprano in bpo-27181 .) structstruct now supports IEEE 754 half-precision floa ...
https://man.plustar.jp/python/whatsnew/3.6.html - [similar]
バッファプロトコル (buffer Protocol) — Python 3.6.5 ドキュメント 6941
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python/C API リファ ... フェースは バッファオブジェクト構造体 (buffer object structure) の節で説明します。 利用する側では、オブジェクト ... オブジェクトを書く方法の短い説明には、 Buffer Object Structures を参照してください。バッファを取得するには、 P ... _ssize_t itemsize ¶ 要素一つ分のbyte単位のサイズ。 struct.calcsize() を非NULLの format 値に対して呼び出した結 ... const char * format ¶ 要素一つ分の内容を指定する、 struct モジュールスタイル文法の、 NUL 終端文字列。 このポ ...
https://man.plustar.jp/python/c-api/buffer.html - [similar]
複素数オブジェクト (complex number object) — Python 3.6.5 ドキュメント 6941
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python/C API リファ ... ます。構造体は以下のように定義されています: typedef struct { double real ; double imag ; } Py_complex ; Py_co ...
https://man.plustar.jp/python/c-api/complex.html - [similar]
具象オブジェクト (concrete object) レイヤ — Python 3.6.5 ドキュメント 6941
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python/C API リファ ... (slot function) タプルオブジェクト (tuple object) Struct Sequence オブジェクト リストオブジェクト Container ...
https://man.plustar.jp/python/c-api/concrete.html - [similar]
21.15. imaplib --- IMAP4 プロトコルクライアント — Python 3.6.5 ドキュメント 6941
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... rivate keys into a single (potentially long-lived) structure. Please read セキュリティで考慮すべき点 for bes ... rresponding local time. The return value is a time.struct_time tuple or None if the string has wrong format. ... -tuple representing local time an instance of time.struct_time (as returned by time.localtime() ), an aware ...
https://man.plustar.jp/python/library/imaplib.html - [similar]
Logging クックブック — Python 3.6.5 ドキュメント 6865
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python HOWTO » Logg ... きます: #!/usr/bin/env python import socket , sys , struct with open ( sys . argv [ 1 ], 'rb' ) as f : data_t ... , PORT )) print ( 'sending config...' ) s . send ( struct . pack ( '>L' , len ( data_to_send ))) s . send ( ... import logging.handlers import socketserver import struct class LogRecordStreamHandler ( socketserver . Stre ... n . recv ( 4 ) if len ( chunk ) < 4 : break slen = struct . unpack ( '>L' , chunk )[ 0 ] chunk = self . conn ...
https://man.plustar.jp/python/howto/logging-cookbook.html - [similar]
What's New In Python 3.4 — Python 3.6.5 ドキュメント 6865
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho ... れは出力先を制御します。 dis モジュールはいまでは Instruction クラスを中心に据えて構築されています。これは個々 ... なアクセスを提供するクラスです。 新規メソッド get_instructions() が、与えた Python コード片についての命令 (イ ... けます: >>> import dis >>> for instr in dis . get_instructions ( lambda x : x + 1 ): ... print ( instr . opna ... I になっています。 Bytecode コンストラクタは get_instruction() と同じ引数 (と、追加でオプショナルな current_ ...
https://man.plustar.jp/python/whatsnew/3.4.html - [similar]
PREV 1 2 3 4 5 NEXT