Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 31 - 40 of about 43 for flag (0.192 sec.)
19.1.4. email.policy: ポリシーオブジェクト — Python 3.6.5 ドキュメント 6725
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... default implementation checks the raise_on_defect flag. If it is True , defect is raised as an exception. ...
https://man.plustar.jp/python/library/email.policy.html - [similar]
21.15. imaplib --- IMAP4 プロトコルクライアント — Python 3.6.5 ドキュメント 6725
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... 合を用いて表現した文字列に変換します。 imaplib. ParseFlags ( flagstr ) ¶ IMAP4 FLAGS 応答を個々のフラグからな ... がクオートされないようにしたい (例えば STORE 命令の flags 引数) 場合、文字列を丸括弧で囲んでください (例: r ... のメソッドを持っています: IMAP4. append ( mailbox , flags , date_time , message ) ¶ 指定された名前のメールボ ... 要求します。 IMAP4. store ( message_set , command , flag_list ) ¶ メールボックス内のメッセージ群のフラグ設定 ...
https://man.plustar.jp/python/library/imaplib.html - [similar]
16.1. os --- 雑多なオペレーティングシステムインタフェース — Python 3.6.5 ドキュ... 6725
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... の値をサポートすることがあります。 os. open ( path , flags , mode=0o777 , * , dir_fd=None ) ¶ ファイル path ... を開き、 flag に従って様々なフラグを設定し、可能なら mode に従っ ... 入れるようになりました。 以下の定数は open() 関数の flags 引数に利用します。これらの定数は、ビット単位に OR ... いファイル記述子が継承不可になりました。 os. pipe2 ( flags ) ¶ flags を設定したパイプをアトミックに作成します ...
https://man.plustar.jp/python/library/os.html - [similar]
18.1. socket --- 低水準ネットワークインターフェイス — Python 3.6.5 ドキュメント 6725
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... れていた場合、ソケットタイプと組み合わせていくつかの flags をアトミックに設定することができます (別の呼び出し ... info ( host , port , family=0 , type=0 , proto=0 , flags=0 ) ¶ host / port 引数の指すアドレス情報を、そのサ ... 数の値として 0 を渡すと絞り込まない結果を返します。 flags 引数には AI_* 定数のうち 1 つ以上が指定でき、結果 ... 際に指定する値と同じ整数です。 AI_CANONNAME を含んだ flags を指定した場合、 canonname は host の canonical n ...
https://man.plustar.jp/python/library/socket.html - [similar]
What's New In Python 3.5 — Python 3.6.5 ドキュメント 6725
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho ... ¶ dumb.open always creates a new database when the flag has the value "n" . (Contributed by Claudiu Popa i ... as selected during the TLS handshake. The HAS_ALPN flag indicates whether ALPN support is present. その他の ...
https://man.plustar.jp/python/whatsnew/3.5.html - [similar]
16.16. ctypes --- Pythonのための外部関数ライブラリ — Python 3.6.5 ドキュメント 6633
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ます。 Python ライブラリにある例としては Py_OptimizeFlag 、起動時の -O または -OO フラグに依存して、 0 , 1 ... うにするための予め定義されたシンボルです。: >>> opt_flag = c_int . in_dll ( pythonapi , "Py_OptimizeFlag" ) ... >>> print ( opt_flag ) c_long(0) >>> インタープリタが -O を指定されて動 ... 関数) を作成します。 prototype ( func_spec [ , paramflags ] ) 共有ライブラリがエクスポートしている外部関数を ...
https://man.plustar.jp/python/library/ctypes.html - [similar]
32.12. dis --- Python バイトコードの逆アセンブラ — Python 3.6.5 ドキュメント 6633
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... s the total number of arguments CALL_FUNCTION_EX ( flags ) ¶ Calls a function. The lowest bit of flags ind ... sist of values if the argument carries a specified flag value 0x01 a tuple of default argument objects in ... 構成し、 ext はその最上位バイトです。 FORMAT_VALUE ( flags ) ¶ Used for implementing formatted literal strin ... l fmt_spec from the stack, then a required value . flags is interpreted as follows: (flags & 0x03) == 0x00 ...
https://man.plustar.jp/python/library/dis.html - [similar]
4. 組み込み型 — Python 3.6.5 ドキュメント 6633
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... が必要だからです)。 変換フラグ文字を以下に示します: Flag 意味 '#' 値の変換に (下で定義されている) "別の形式 ... が必要だからです)。 変換フラグ文字を以下に示します: Flag 意味 '#' 値の変換に (下で定義されている) "別の形式 ...
https://man.plustar.jp/python/library/stdtypes.html - [similar]
13.5. zipfile --- ZIP アーカイブの処理 — Python 3.6.5 ドキュメント 6633
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ed ¶ 予約領域。ゼロでなくてはなりません。 ZipInfo. flag_bits ¶ ZIP フラグビット列。 ZipInfo. volume ¶ ファ ...
https://man.plustar.jp/python/library/zipfile.html - [similar]
2. 組み込み関数 — Python 3.6.5 ドキュメント 6525
ナビゲーション 索引 モジュール | 次へ | 前へ | 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 ... zero) 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]
PREV 1 2 3 4 5 NEXT