Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 21 - 30 of about 146 for default (0.020 sec.)
28.2. ensurepip --- pip インストーラのブートストラップ — Python 3.6.5 ドキュメ... 6961
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ージョン付けされたものだけがインストールされます。 --default-pip : もし "default pip" のインストールが要求された ... , upgrade=False , user=False , altinstall=False , default_pip=False , verbosity=0 ) ¶ 現在の環境あるいは指示 ... 定されていた場合は pipX はインストール されません 。 default_pip がセットされていれば、 pip スクリプトが2つの標 ... スクリプトと共にインストールされます。 altinstall と default_pip の両方を指定すると、 ValueError を起こします。 ...
https://man.plustar.jp/python/library/ensurepip.html - [similar]
19.1.8. email: 使用例 — Python 3.6.5 ドキュメント 6890
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... port BytesParser , Parser from email.policy import default # If the e-mail headers are in a file, uncomment t ... efile, 'rb') as fp: # headers = BytesParser(policy=default).parse(fp) # Or for parsing headers in a string (t ... ommon operation), use: headers = Parser ( policy = default ) . parsestr ( 'From: Foo Bar <user@example.com> \ ... True , action = 'append' , metavar = 'RECIPIENT' , default = [], dest = 'recipients' , help = 'A To: header v ...
https://man.plustar.jp/python/library/email.examples.html - [similar]
2. 拡張の型の定義: チュートリアル — Python 3.6.5 ドキュメント 6831
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python インタプリタ ... ect ), . tp_itemsize = 0 , . tp_flags = Py_TPFLAGS_DEFAULT , . tp_new = PyType_GenericNew , }; static PyModul ... 増加するためこの条件は満たされています。 Py_TPFLAGS_DEFAULT にクラスフラグを設定します。 . tp_flags = Py_TPFLA ... GS_DEFAULT , すべての型はフラグにこの定数を含めておく必要があ ... ect ), . tp_itemsize = 0 , . tp_flags = Py_TPFLAGS_DEFAULT | Py_TPFLAGS_BASETYPE , . tp_new = Custom_new , . ...
https://man.plustar.jp/python/extending/newtypes_tutorial.html - [similar]
21.18. smtpd --- SMTP サーバー — Python 3.6.5 ドキュメント 6761
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... n (as defined in RFC 6531 ) should be enabled. The default is False . When True , SMTPUTF8 is accepted as a p ... ecoded using UTF-8. When decode_data is False (the default), the server advertises the 8BITMIME extension ( R ... バージョン 3.6 で変更: decode_data is now False by default. 21.18.2. DebuggingServer オブジェクト ¶ class smt ... n (as defined in RFC 6531 ) should be enabled. The default is False . decode_data and enable_SMTPUTF8 cannot ...
https://man.plustar.jp/python/library/smtpd.html - [similar]
19.1.2. email.parser: 電子メールメッセージのパース — Python 3.6.5 ドキュメント 6690
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... n of the email package and provides Message as the default factory. All other policies provide EmailMessage a ... s the default _factory . For more information on what else polic ... he policy keyword should always be specified ; The default will change to email.policy.default in a future ve ... が追加されました。 バージョン 3.6 で変更: _factory defaults to the policy message_factory . feed ( data ) ¶ F ...
https://man.plustar.jp/python/library/email.parser.html - [similar]
21.6. urllib.request --- URL を開くための拡張可能なライブラリ — Python 3.6.5 ド... 6549
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... , [ timeout , ] * , cafile=None , capath=None , cadefault=False , context=None ) ¶ URL url を開きます。 url ... ext.load_verify_locations() を参照してください。 cadefault 引数は無視されます。 この関数は常に コンテクストマ ... 定できるようになりました。 バージョン 3.3 で変更: cadefault が追加されました。 バージョン 3.4.3 で変更: contex ... た。 バージョン 3.6 で非推奨: cafile , capath and cadefault are deprecated in favor of context . Please use ss ...
https://man.plustar.jp/python/library/urllib.request.html - [similar]
18.5.2. イベントループ — Python 3.6.5 ドキュメント 6490
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... never have to be dealt with explicitly, since the default global policy is sufficient (see below). The modul ... de convenient access to event loops managed by the default policy. 18.5.2.5. イベントループポリシーインターフ ... oop() が明示的に呼び出されなくてはなりません。 The default policy defines context as the current thread, and ... already have an event loop associated with it, the default policy's get_event_loop() method creates one when ...
https://man.plustar.jp/python/library/asyncio-eventloops.html - [similar]
21.12. http.client --- HTTP プロトコルクライアント — Python 3.6.5 ドキュメント 6490
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ntext.load_cert_chain() instead, or let ssl.create_default_context() select the system's trusted CA certifica ... body is a string, it is encoded as ISO-8859-1, the default for HTTP. If it is a bytes-like object, the bytes ... ebuglevel ( level ) ¶ Set the debugging level. The default debug level is 0 , meaning no debugging output is ... e server specified when the object was created. By default, this is called automatically when making a reques ...
https://man.plustar.jp/python/library/http.client.html - [similar]
Python モジュールのインストール — Python 3.6.5 ドキュメント 6348
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python モジュールの ... してください。 python2 -m pip install SomePackage # default Python 2 python2.7 -m pip install SomePackage # sp ... ly Python 2.7 python3 -m pip install SomePackage # default Python 3 python3.4 -m pip install SomePackage # sp ... 使ってください。 py -2 -m pip install SomePackage # default Python 2 py -2.7 -m pip install SomePackage # spec ... ally Python 2.7 py -3 -m pip install SomePackage # default Python 3 py -3.4 -m pip install SomePackage # spec ...
https://man.plustar.jp/python/installing/index.html - [similar]
19.1.15. email.iterators: イテレータ — Python 3.6.5 ドキュメント 6348
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... rs. _structure ( msg , fp=None , level=0 , include_default=False ) ¶ Prints an indented representation of the ... rint() function. level is used internally. include_default , if true, prints the default type as well. 関連キ ...
https://man.plustar.jp/python/library/email.iterators.html - [similar]
PREV 1 2 3 4 5 6 7 8 9 10 11 12 NEXT