Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 11 - 20 of about 52 for flags (0.041 sec.)
2. 拡張の型の定義: チュートリアル — Python 3.6.5 ドキュメント 7870
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python インタプリタ ... sizeof ( CustomObject ), . tp_itemsize = 0 , . tp_flags = Py_TPFLAGS_DEFAULT , . tp_new = PyType_GenericNe ... つねに増加するためこの条件は満たされています。 Py_TPFLAGS_DEFAULT にクラスフラグを設定します。 . tp_flags = ... Py_TPFLAGS_DEFAULT , すべての型はフラグにこの定数を含めておく ... sizeof ( CustomObject ), . tp_itemsize = 0 , . tp_flags = Py_TPFLAGS_DEFAULT | Py_TPFLAGS_BASETYPE , . tp_ ...
https://man.plustar.jp/python/extending/newtypes_tutorial.html - [similar]
29.12. inspect --- 活動中のオブジェクトの情報を取得する — Python 3.6.5 ドキュメ... 7796
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... イル名 co_firstlineno Python ソースコードの先頭行 co_flags bitmap of CO_* flags, read more here co_lnotab 行番 ... . バージョン 3.5 で追加. 29.12.8. Code Objects Bit Flags ¶ Python code objects have a co_flags attribute, w ... hich is a bitmap of the following flags: inspect. CO_OPTIMIZED ¶ The code object is optimi ... for more details. バージョン 3.6 で追加. 注釈 The flags are specific to CPython, and may not be defined in ...
https://man.plustar.jp/python/library/inspect.html - [similar]
18.3. select --- I/O 処理の完了を待機する — Python 3.6.5 ドキュメント 7706
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... 継承不可になりました。 select. epoll ( sizehint=-1 , flags=0 ) ¶ (Only supported on Linux 2.5.44 and newer.) ... l Triggered interface for I/O events. sizehint and flags are deprecated and completely ignored. エッジポーリ ... イル記述子は 継承不可 です。 バージョン 3.3 で変更: flags 引数が追加されました。 バージョン 3.4 で変更: with ... 子が継承不可になりました。 バージョン 3.4 で非推奨: flags パラメータ。 現在ではデフォルトで select.EPOLL_CLO ...
https://man.plustar.jp/python/library/select.html - [similar]
文字列の変換と書式化 — Python 3.6.5 ドキュメント 7631
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python/C API リファ ... ouble val , char format_code , int precision , int flags , int *ptype ) ¶ double val を指定された format_co ... de , precision , flags に基づいて文字列に変換します。 format_code は 'e' ... コードは標準の repr() フォーマットを指定しています。 flags は 0 か、 Py_DTSF_SIGN , Py_DTSF_ADD_DOT_0 , Py_DT ...
https://man.plustar.jp/python/c-api/conversion.html - [similar]
共通のオブジェクト構造体 (common object structure) — Python 3.6.5 ドキュメント 7631
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python/C API リファ ... メソッド名 ml_meth PyCFunction C 実装へのポインタ ml_flags int 呼び出しをどのように行うかを示すフラグビット m ... lf オブジェクトに使う実装はよく行われています。 ml_flags フィールドはビットフィールドで、以下のフラグが入り ... ンバの type object 構造体中の場所の offset バイト数 flags int フィールドが読み出し専用か書込み可能なのかを示 ... ば T_OBJECT ではなく T_OBJECT_EX を使ってください。 flags には読み書きアクセス可能なら 0 で、読み出し専用なら ...
https://man.plustar.jp/python/c-api/structures.html - [similar]
3. Defining Extension Types: Assorted Topics — Python 3.6.5 ドキュメント 7631
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python インタプリタ ... output buffer */ PyBufferProcs * tp_as_buffer ; /* Flags to define presence of optional/expanded features * ... / unsigned long tp_flags ; const char * tp_doc ; /* Documentation string */ ... ion ml_meth ; /* implementation function */ int ml_flags ; /* flags */ const char * ml_doc ; /* docstring * ... berDef { char * name ; int type ; int offset ; int flags ; char * doc ; } PyMemberDef ; このテーブルの各エン ...
https://man.plustar.jp/python/extending/newtypes.html - [similar]
9.4. decimal --- 十進固定及び浮動小数点数の算術演算 — Python 3.6.5 ドキュメント 7631
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... N, Emin=-999999, Emax=999999, capitals=1, clamp=0, flags=[], traps=[Overflow, DivisionByZero, InvalidOperat ... N, Emin=-999999, Emax=999999, capitals=1, clamp=0, flags=[], traps=[]) >>> setcontext ( ExtendedContext ) > ... め、フラグのモニタを行いたいような演算の前には clear_flags() メソッドでフラグをクリアしておくのがベストです。 ... text ( ExtendedContext ) >>> getcontext () . clear_flags () >>> Decimal ( 355 ) / Decimal ( 113 ) Decimal(' ...
https://man.plustar.jp/python/library/decimal.html - [similar]
型オブジェクト — Python 3.6.5 ドキュメント 7557
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python/C API リファ ... output buffer */ PyBufferProcs * tp_as_buffer ; /* Flags to define presence of optional/expanded features * ... / unsigned long tp_flags ; const char * tp_doc ; /* Documentation string */ ... び出します。ある型がサブタイプを作成できない ( Py_TPFLAGS_BASETYPE フラグがセットされていない) 場合、 tp_fre ... は個別に継承されます。 unsigned long PyTypeObject.tp_flags ¶ このフィールドは様々なフラグからなるビットマスク ...
https://man.plustar.jp/python/c-api/typeobj.html - [similar]
18.9. mmap --- メモリマップファイル — Python 3.6.5 ドキュメント 7557
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ばなりません。 class mmap. mmap ( fileno , length , flags=MAP_SHARED , prot=PROT_WRITE|PROT_READ , access=AC ... mmap が呼ばれた時点でのファイルサイズになります。 flags はマップの種類を指定します。 MAP_PRIVATE はプライベ ... ccess はオプションのキーワード・パラメータとして、 flags と prot の代わりに指定してもかまいません。 flags , ...
https://man.plustar.jp/python/library/mmap.html - [similar]
18.2. ssl --- ソケットオブジェクトに対する TLS/SSL ラッパー — Python 3.6.5 ドキ... 7557
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... .6 で追加. ssl. VERIFY_DEFAULT ¶ SSLContext.verify_flags に渡せる値です。このモードでは、証明書失効リスト(C ... 追加. ssl. VERIFY_CRL_CHECK_LEAF ¶ SSLContext.verify_flags に渡せる値です。このモードでは、接続先の証明書のチ ... 加. ssl. VERIFY_CRL_CHECK_CHAIN ¶ SSLContext.verify_flags に渡せる値です。このモードでは、接続先の証明書チェ ... で追加. ssl. VERIFY_X509_STRICT ¶ SSLContext.verify_flags に渡せる値で、壊れた X.509 証明書に対するワークアラ ...
https://man.plustar.jp/python/library/ssl.html - [similar]
PREV 1 2 3 4 5 6 NEXT