Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 91 - 100 of about 211 for OBJECT (0.112 sec.)
bytearray オブジェクト — Python 3.6.5 ドキュメント 4980
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python/C API リファ ... レンスマニュアル » 具象オブジェクト (concrete object) レイヤ » bytearray オブジェクト ¶ PyByteArrayObje ... ct ¶ この PyObject のサブタイプは Python の bytearray オブジェクトを表 ... します。 PyTypeObject PyByteArray_Type ¶ この PyTypeObject のインスタンス ... です。 型チェックマクロ ¶ int PyByteArray_Check ( PyObject *o ) ¶ o が bytearray かそのサブタイプのインスタン ...
https://man.plustar.jp/python/c-api/bytearray.html - [similar]
シーケンス型プロトコル (sequence protocol) — Python 3.6.5 ドキュメント 4980
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python/C API リファ ... レンスマニュアル » 抽象オブジェクトレイヤ (abstract objects layer) » シーケンス型プロトコル (sequence protoco ... l) ¶ int PySequence_Check ( PyObject *o ) ¶ Return 1 if the object provides sequence pr ... on always succeeds. Py_ssize_t PySequence_Size ( PyObject *o ) ¶ Py_ssize_t PySequence_Length ( PyObject *o ... す。これは、Python の式 len(o) と同じになります。 PyObject * PySequence_Concat ( PyObject *o1 , PyObject *o2 ...
https://man.plustar.jp/python/c-api/sequence.html - [similar]
Set オブジェクト — Python 3.6.5 ドキュメント 4980
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python/C API リファ ... レンスマニュアル » 具象オブジェクト (concrete object) レイヤ » Set オブジェクト ¶ このセクションでは se ... 説明していない機能は、抽象オブジェクトプロトコル ( PyObject_CallMethod() , PyObject_RichCompareBool() , PyObje ... ct_Hash() , PyObject_Repr() , PyObject_IsTrue() , PyObject_Print() , Py ... r_InPlaceXor() を含む) を使って利用できます。 PySetObject ¶ この PyObject を継承した型は、 set と frozenset ...
https://man.plustar.jp/python/c-api/set.html - [similar]
19.1.9. email.message.Message: Representing an email message using the compat32 ... 4980
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... payload may be a simple text message, or a binary object, or a structured sequence of sub-messages each wit ... fc822 . The conceptual model provided by a Message object is that of an ordered dictionary of headers with a ... the message, and for recursively walking over the object tree. Note that duplicate headers are supported bu ... r a string or bytes, in the case of simple message objects, or a list of Message objects, for MIME container ...
https://man.plustar.jp/python/library/email.compat32-message.html - [similar]
10.1. itertools --- 効率的なループ実行のためのイテレータ生成関数 — Python 3.6.5... 4980
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... elf . tgtkey = self . currkey = self . currvalue = object () def __iter__ ( self ): return self def __next__ ... result : yield tuple ( prod ) itertools. repeat ( object [ , times ] ) ¶ 繰り返し object を返すイテレータを ... い部分を作ります。 およそ次と等価です: def repeat ( object , times = None ): # repeat(10, 3) --> 10 10 10 if ... times is None : while True : yield object else : for i in range ( times ): yield object repe ...
https://man.plustar.jp/python/library/itertools.html - [similar]
13.1. zlib --- gzip 互換の圧縮 — Python 3.6.5 ドキュメント 4980
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ¶ Compresses the bytes in data , returning a bytes object containing compressed data. level is an integer fr ... Decompresses the bytes in data , returning a bytes object containing the uncompressed data. The wbits parame ... ] ) ¶ All pending input is processed, and a bytes object containing the remaining compressed output is retu ... again; the only realistic action is to delete the object. Compress. copy ( ) ¶ 圧縮オブジェクトのコピーを返 ...
https://man.plustar.jp/python/library/zlib.html - [similar]
バイトオブジェクト — Python 3.6.5 ドキュメント 4938
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python/C API リファ ... レンスマニュアル » 具象オブジェクト (concrete object) レイヤ » バイトオブジェクト ¶ 下記の関数は、バイト ... して呼び出されると、 TypeError を送出します。 PyBytesObject ¶ この PyObject のサブタイプは、Python バイトオブジ ... ェクトを表します。 PyTypeObject PyBytes_Type ¶ この PyTypeObject のインスタンスは、 ... tes と同じオブジェクトです。 int PyBytes_Check ( PyObject *o ) ¶ オブジェクト o がバイトオブジェクトか、また ...
https://man.plustar.jp/python/c-api/bytes.html - [similar]
プログラミング FAQ — Python 3.6.5 ドキュメント 4938
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python よくある質問 ... x + 1 # 5 can't be mutated, we are creating a new object here >>> x 6 >>> y 5 この場合ご覧の通り x と y はま ... and b are local names b = b + 1 # assigned to new objects return a , b # return new values x , y = 'old-val ... able list a [ 1 ] = a [ 1 ] + 1 # changes a shared object args = [ 'old-value' , 99 ] func1 ( args ) print ( ... mutable callByRef args . b = args . b + 1 # change object in-place args = callByRef ( a = 'old-value' , b = ...
https://man.plustar.jp/python/faq/programming.html - [similar]
16.16. ctypes --- Pythonのための外部関数ライブラリ — Python 3.6.5 ドキュメント 4938
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... > from ctypes import * >>> libc . printf <_FuncPtr object at 0x...> >>> print ( windll . kernel32 . GetModul ... eHandleA ) <_FuncPtr object at 0x...> >>> print ( windll . kernel32 . MyOwnFun ... tattr ( cdll . msvcrt , "??2@YAPAXI@Z" ) <_FuncPtr object at 0x...> >>> Windows では、名前ではなく序数によっ ... アクセスします: >>> cdll . kernel32 [ 1 ] <_FuncPtr object at 0x...> >>> cdll . kernel32 [ 0 ] Traceback (mos ...
https://man.plustar.jp/python/library/ctypes.html - [similar]
32.12. dis --- Python バイトコードの逆アセンブラ — Python 3.6.5 ドキュメント 4938
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... o_firstlineno and co_lnotab attributes of the code object code to find the offsets which are starts of lines ... They are generated as (offset, lineno) pairs. See Objects/lnotab_notes.txt for the co_lnotab format and how ... ます。 BUILD_MAP ( count ) ¶ Pushes a new dictionary object onto the stack. Pops 2 * count items so that the d ... argument on top. Below the arguments, the function object to call is on the stack. Pops all function argumen ...
https://man.plustar.jp/python/library/dis.html - [similar]
PREV 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 NEXT