Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 21 - 30 of about 52 for flags (0.086 sec.)
memoryview オブジェクト — Python 3.6.5 ドキュメント 7482
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python/C API リファ ... iew_FromMemory ( char *mem , Py_ssize_t size , int flags ) ¶ mem を配下のバッファとしてmemoryview オブジェク ... トを作成します。 flags は PyBUF_READ か PyBUF_WRITE のどちらかになります。 ...
https://man.plustar.jp/python/c-api/memoryview.html - [similar]
2. 組み込み関数 — Python 3.6.5 ドキュメント 7393
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... してください。 compile ( source , filename , mode , flags=0 , dont_inherit=False , optimize=-1 ) ¶ source を ... 外である式文が印字されます)。 The optional arguments flags and dont_inherit control which future statements ( ... ect in the code that is calling compile() . If the flags argument is given and dont_inherit is not (or is z ... ero) then the future statements specified by the flags argument are used in addition to those that would ...
https://man.plustar.jp/python/library/functions.html - [similar]
ファイルオブジェクト — Python 3.6.5 ドキュメント 7318
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python/C API リファ ... le_WriteObject ( PyObject *obj , PyObject *p , int flags ) ¶ オブジェクト obj をファイルオブジェクト p に書 ... き込みます。 flags がサポートするフラグは Py_PRINT_RAW だけです; この ...
https://man.plustar.jp/python/c-api/file.html - [similar]
34.4. winsound --- Windows 用の音声再生インタフェース — Python 3.6.5 ドキュメン... 7318
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ror が送出されます。 winsound. PlaySound ( sound , flags ) ¶ Call the underlying PlaySound() function from ... None . Its interpretation depends on the value of flags , which can be a bitwise ORed combination of the c ...
https://man.plustar.jp/python/library/winsound.html - [similar]
型オブジェクト — Python 3.6.5 ドキュメント 7243
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python/C API リファ ... す。現在のバージョンタグを返します。 long PyType_GetFlags ( PyTypeObject * type ) ¶ type のメンバーである tp ... _flags を返します。この関数は基本的に Py_LIMITED_API を定 ... リリースで安定していることが保証されていますが、 tp_flags 自体は限定されたAPIの一部ではありません。 バージョ ... いる場合に真を返します; この関数は型機能フラグ Py_TPFLAGS_HAVE_GC の設定状態をチェックします。 int PyType_Is ...
https://man.plustar.jp/python/c-api/type.html - [similar]
26.3. doctest --- 対話的な実行例をテストする — Python 3.6.5 ドキュメント 7168
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ントアウト"するのにも使えます。 doctest. COMPARISON_FLAGS ¶ 上記の比較フラグすべての論理和をとったビットマス ... 付けます。 バージョン 3.4 で追加. doctest. REPORTING_FLAGS ¶ 上記のエラー報告に関するフラグすべての論理和をと ... , globs=None , verbose=None , report=True , optionflags=0 , extraglobs=None , raise_on_error=False , parse ... した場合には何も出力しません)。 オプション引数 optionflags (デフォルト値 0) は、各オプションフラグの ビット単 ...
https://man.plustar.jp/python/library/doctest.html - [similar]
コードオブジェクト — Python 3.6.5 ドキュメント 7004
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python/C API リファ ... kwonlyargcount , int nlocals , int stacksize , int flags , PyObject *code , PyObject *consts , PyObject *na ...
https://man.plustar.jp/python/c-api/code.html - [similar]
29.1. sys --- システムパラメータと関数 — Python 3.6.5 ドキュメント 7004
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ています。このモジュールは常に利用可能です。 sys. abiflags ¶ Python が標準的な configure でビルトされた POSIX ... きた場合、終了ステータスは 120 に変更されます。 sys. flags ¶ コマンドラインフラグの状態を表す 構造体シーケンス ... フォルトエンコーディング名を返します。 sys. getdlopenflags ( ) ¶ Return the current value of the flags that a ... witchinterval() を使用してください。 sys. setdlopenflags ( n ) ¶ Set the flags used by the interpreter for ...
https://man.plustar.jp/python/library/sys.html - [similar]
6.1. string --- 一般的な文字列操作 — Python 3.6.5 ドキュメント 6930
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... :[_a-zA-Z][_a-zA-Z0-9]*) という正規表現です。 注釈 flags のデフォルトは re.IGNORECASE なので、 [a-z] という ... のため、ここではローカルの -i フラグを使っています。 flags は後方互換性のため re.IGNORECASE のままになっていま ... CASE | re.ASCII にオーバライドすることが出来ます。 flags -- 代入の認識のために使用される正規表現をコンパイル ...
https://man.plustar.jp/python/library/string.html - [similar]
What's New In Python 3.6 — Python 3.6.5 ドキュメント 6930
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho ... es have been added to the enum module: Flag and IntFlags . Both are used to define constants that can be co ... rd library modules have been updated to use the IntFlags class for their constants. The new enum.auto value ... ers in order of cipher priority. All constants and flags have been converted to IntEnum and IntFlags . (Con ... bpo-25791 and bpo-26754 .) re ¶ Support for inline flags (?letters) in the middle of the regular expression ...
https://man.plustar.jp/python/whatsnew/3.6.html - [similar]
PREV 1 2 3 4 5 6 NEXT