Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 1 - 10 of about 40 for store (0.029 sec.)
36.1. optparse --- コマンドラインオプション解析器 — Python 3.6.5 ドキュメント 16366
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... parser . add_option ( "-q" , "--quiet" , action = "store_false" , dest = "verbose" , default = True , help ... ョンを指定しない場合、 optparse のデフォルトの動作は store になります。 36.1.2.2. store アクション ¶ もっとも ... 良く使われるアクションは store です。このアクションは次の引数 (あるいは現在の引数 ... parser . add_option ( "-f" , "--file" , action = "store" , type = "string" , dest = "filename" ) 例えば、以 ...
https://man.plustar.jp/python/library/optparse.html - [similar]
16.4. argparse --- コマンドラインオプション、引数、サブコマンドのパーサー — Pyt... 10422
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... gument ( '--sum' , dest = 'accumulate' , action = 'store_const' , const = sum , default = max , help = 'sum ... gument ( '--sum' , dest = 'accumulate' , action = 'store_const' , ... const = sum , default = max , ... hel ... >>> parser . add_argument ( '--foobar' , action = 'store_true' ) >>> parser . add_argument ( '--foonley' , ... action = 'store_false' ) >>> parser . parse_args ([ '--foon' ]) us ...
https://man.plustar.jp/python/library/argparse.html - [similar]
32.12. dis --- Python バイトコードの逆アセンブラ — Python 3.6.5 ドキュメント 9829
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... R ¶ インプレースの TOS = TOS1 | TOS を実行します。 STORE_SUBSCR ¶ TOS1[TOS] = TOS2 を実行します。 DELETE_SU ... コードはこれを無視 ( POP_TOP ) するか、変数に保存 ( STORE_FAST , STORE_NAME , または UNPACK_SEQUENCE ) します ... All of the following opcodes use their arguments. STORE_NAME ( namei ) ¶ name = TOS を実行します。 namei は ... る name のインデックスです。 コンパイラは可能ならば STORE_FAST または STORE_GLOBAL を使おうとします。 DELETE ...
https://man.plustar.jp/python/library/dis.html - [similar]
Argparse チュートリアル — Python 3.6.5 ドキュメント 9330
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python HOWTO » Argp ... " , help = "increase output verbosity" , action = "store_true" ) args = parser . parse_args () if args . ve ... ように変更しました。新しいキーワード引数 action に "store_true" を値として渡していることに注意してください。 ... " , help = "increase output verbosity" , action = "store_true" ) args = parser . parse_args () if args . ve ... er . add_argument ( "-v" , "--verbose" , action = "store_true" , help = "increase output verbosity" ) args ...
https://man.plustar.jp/python/howto/argparse.html - [similar]
28.3. venv --- 仮想環境の作成 — Python 3.6.5 ドキュメント 8752
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ( '--no-setuptools' , default = False , action = 'store_true' , dest = 'nodist' , help = "Don't install se ... rgument ( '--no-pip' , default = False , action = 'store_true' , dest = 'nopip' , help = "Don't install pip ... ystem-site-packages' , default = False , action = 'store_true' , dest = 'system_site' , help = 'Give the vi ... '--symlinks' , default = use_symlinks , action = 'store_true' , dest = 'symlinks' , help = 'Try to use sym ...
https://man.plustar.jp/python/library/venv.html - [similar]
19.1.4. email.policy: ポリシーオブジェクト — Python 3.6.5 ドキュメント 8081
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... policy to the generator that will override the one stored on the message object. The default value for the ... hould return the (name, value) tuple that is to be stored in the Message to represent the parsed header. If ... an implementation wishes to retain compatibility with the existing email packag ... とがあります。 デフォルトの実装はありません。 header_store_parse ( name , value ) ¶ The email package calls t ...
https://man.plustar.jp/python/library/email.policy.html - [similar]
35.8. pty --- 擬似端末ユーティリティ — Python 3.6.5 ドキュメント 8081
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... add_argument ( '-a' , dest = 'append' , action = 'store_true' ) parser . add_argument ( '-p' , dest = 'use ... _python' , action = 'store_true' ) parser . add_argument ( 'filename' , nargs ...
https://man.plustar.jp/python/library/pty.html - [similar]
6.3. difflib --- 差分の計算を助ける — Python 3.6.5 ドキュメント 7738
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ore ? ^ - two - three ? - + tree + emu difflib. restore ( sequence , which ) ¶ 差分を生成した元の二つのシー ... erated delta into a list >>> print ( '' . join ( restore ( diff , 1 )), end = "" ) one two three >>> print ... ( '' . join ( restore ( diff , 2 )), end = "" ) ore tree emu difflib. un ... Parser () parser . add_argument ( '-c' , action = 'store_true' , default = False , help = 'Produce a contex ...
https://man.plustar.jp/python/library/difflib.html - [similar]
21.15. imaplib --- IMAP4 プロトコルクライアント — Python 3.6.5 ドキュメント 7738
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... れます。文字列がクオートされないようにしたい (例えば STORE 命令の flags 引数) 場合、文字列を丸括弧で囲んでくだ ... の指定ステータス名の状態情報を要求します。 IMAP4. store ( message_set , command , flag_list ) ¶ メールボッ ... ne , 'ALL' ) for num in data [ 0 ] . split (): M . store ( num , '+FLAGS' , ' \\ Deleted' ) M . expunge () ...
https://man.plustar.jp/python/library/imaplib.html - [similar]
18.2. ssl --- ソケットオブジェクトに対する TLS/SSL ラッパー — Python 3.6.5 ドキ... 7660
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ます バージョン 3.4 で追加. ssl. enum_certificates ( store_name ) ¶ Windows のシステム証明書ストアより証明書を ... 抽出します。 store_name は CA , ROOT , MY のうちどれか一つでしょう。W ... : Windows. バージョン 3.4 で追加. ssl. enum_crls ( store_name ) ¶ Windows のシステム証明書ストアより CRLs を ... 抽出します。 store_name は CA , ROOT , MY のうちどれか一つでしょう。W ...
https://man.plustar.jp/python/library/ssl.html - [similar]
PREV 1 2 3 4 NEXT