Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 31 - 40 of about 127 for version (0.063 sec.)
Logging クックブック — Python 3.6.5 ドキュメント 6166
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python HOWTO » Logg ... ) if __name__ == '__main__' : q = Queue () d = { 'version' : 1 , 'formatters' : { 'detailed' : { 'class' : ' ... tConfig() に渡して設定を有効にします: LOGGING = { 'version' : 1 , 'disable_existing_loggers' : True , 'format ... n which prints to the console. config_initial = { 'version' : 1 , 'formatters' : { 'detailed' : { 'class' : ' ... n the child following a fork(). config_worker = { 'version' : 1 , 'disable_existing_loggers' : True , 'handle ...
https://man.plustar.jp/python/howto/logging-cookbook.html - [similar]
19.1.2. email.parser: 電子メールメッセージのパース — Python 3.6.5 ドキュメント 6166
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... any way it finds necessary by implementing custom versions of the appropriate policy methods. 19.1.2.1. Feed ... intains backward compatibility with the Python 3.2 version of the email package and provides Message as the d ... lt will change to email.policy.default in a future version of Python. バージョン 3.2 で追加. バージョン 3.3 で ... lt will change to email.policy.default in a future version of Python. バージョン 3.3 で変更: 2.4 で非推奨にな ...
https://man.plustar.jp/python/library/email.parser.html - [similar]
6. モジュール (module) — Python 3.6.5 ドキュメント 6166
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python チュートリア ... の各モジュールを __pycache__ ディレクトリの module. version .pyc ファイルとしてキャッシュします。ここで versio ... home', '_mercurial', '_xoptions', 'abiflags', 'api_version', 'argv', 'base_exec_prefix', 'base_prefix', 'buil ... , 'gettotalrefcount', 'gettrace', 'hash_info', 'hexversion', 'implementation', 'int_info', 'intern', 'maxsize ... ace', 'stderr', 'stdin', 'stdout', 'thread_info', 'version', 'version_info', 'warnoptions'] 引数がなければ、 ...
https://man.plustar.jp/python/tutorial/modules.html - [similar]
1. コマンドラインと環境 — Python 3.6.5 ドキュメント 6166
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python のセットアッ ... ンドラインオプションの短い説明を出力します。 -V ¶ --version ¶ Print the Python version number and exit. Exampl ... す。デフォルトでは、ライブラリは prefix /lib/python version と exec_prefix /lib/python version から検索されます ... はインストール依存ですが、通常は prefix /lib/python version で始まります。 (上の PYTHONHOME を参照してください ...
https://man.plustar.jp/python/using/cmdline.html - [similar]
What's New in Python 2.5 — Python 3.6.5 ドキュメント 6166
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho ... 思います。以下 2 つの例を考えてみてください: # First version -- no parens level = 1 if logging else 0 # Second ... ることが出来、必要パッケージをダウンロード出来ます: VERSION = '1.0' setup ( name = 'PyPackage' , version = VER ... /www.example.com/pypackage/dist/pkg- %s .tar.gz' % VERSION ), ) Another new enhancement to the Python package ... ログラミングモデルもあります -- http://www.unix.org/version2/whatsnew/lp64_wp.html の議論を参照して下さい -- で ...
https://man.plustar.jp/python/whatsnew/2.5.html - [similar]
5. ビルド済み配布物を作成する — Python 3.6.5 ドキュメント 6080
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python モジュールの ... 0.4 以上が必要です (バージョンを調べるには、 rpm --version とします) bdist コマンドを使うとき、必ず --formats ... oe <jdoe@example.org>" \ bdist_wininst -- target - version = "2.0" Distutils が setup スクリプトで制御されてい ... プション 名前 name Summary (preamble 内) description Version version Vendor author と author_email , または --- ...
https://man.plustar.jp/python/distutils/builtdist.html - [similar]
What's New In Python 3.1 — Python 3.6.5 ドキュメント 6080
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho ... されました: SEEK_SET , SEEK_CUR , and SEEK_END . sys.version_info タプルが名前付きタプルになりました。 >>> sys ... . version_info sys.version_info(major=3, minor=1, micro=0, r ... ter depending on the task at hand. The pure Python version is still available for experimentation purposes th ...
https://man.plustar.jp/python/whatsnew/3.1.html - [similar]
2. setup スクリプトを書く — Python 3.6.5 ドキュメント 5994
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python モジュールの ... ils.core import setup setup ( name = 'Distutils' , version = '1.0' , description = 'Python Distribution Utili ... re import setup , Extension setup ( name = 'foo' , version = '1.0' , ext_modules = [ Extension ( 'foo' , [ 'f ... いくつかの例を見てみましょう: require式 説明 ==1.0 version 1.0 のみが適合します >1.0, !=1.5.1, <2.0 1.5.1 を除 ... ージョンは配布物のものを使います。 mypkg (1.1) mypkg version 1.1 を提供します。配布物のバージョン番号は気にしま ...
https://man.plustar.jp/python/distutils/setupscript.html - [similar]
2. 拡張の型の定義: チュートリアル — Python 3.6.5 ドキュメント 5994
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python インタプリタ ... import setup , Extension setup ( name = "custom" , version = "1.0" , ext_modules = [ Extension ( "custom" , [ ... ply reuse PyType_GenericNew() as done in the first version of the Custom type above. In this case, we use the ... import setup , Extension setup ( name = "custom" , version = "1.0" , ext_modules = [ Extension ( "custom" , [ ... tes are set in the Custom example. In the previous version of our module, the instance variables first and la ...
https://man.plustar.jp/python/extending/newtypes_tutorial.html - [similar]
19.1.7. email.contentmanager: MIME 内容の管理 — Python 3.6.5 ドキュメント 5994
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... fully qualified name of the type. Also add a MIME-Version header if one is not present (see also MIMEPart ). ... ot. If the message parts in the <'list'> have MIME-Version headers, remove them. If charset is provided (whic ...
https://man.plustar.jp/python/library/email.contentmanager.html - [similar]
PREV 1 2 3 4 5 6 7 8 9 10 11 12 13 NEXT