Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 21 - 30 of about 127 for version (0.030 sec.)
28.4. zipapp --- 実行可能な python zip 書庫を管理する — Python 3.6.5 ドキュメン... 7071
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ir default, and write your code to work under both versions. If you use an explicit version, for example "/us ... ation will not work for users who do not have that version. (This may be what you want if you have not made y ... hon X.Y or later", so be careful of using an exact version like "/usr/bin/env python3.4" as you will need to ... uted to end users who only need to have a suitable version of Python installed on their system. The key to do ...
https://man.plustar.jp/python/library/zipapp.html - [similar]
引数の解釈と値の構築 — Python 3.6.5 ドキュメント 6655
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python/C API リファ ... きに TypeError を送出していました。 Deprecated since version 3.3, will be removed in version 4.0: Part of the o ... ードポイントを含むことができます。 Deprecated since version 3.3, will be removed in version 4.0: Part of the o ... ポインタは NULL にセットされます。 Deprecated since version 3.3, will be removed in version 4.0: Part of the o ... ポインタは NULL にセットされます。 Deprecated since version 3.3, will be removed in version 4.0: Part of the o ...
https://man.plustar.jp/python/c-api/arg.html - [similar]
21.28. ipaddress --- IPv4/IPv6 操作ライブラリ — Python 3.6.5 ドキュメント 6569
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... make it easier to write code that handles both IP versions correctly. Address objects are hashable , so they ... ' \xC0\xA8\x00\x01 ' ) IPv4Address('192.168.0.1') version ¶ 適切なバージョン番号: IPv4 なら 4 , IPv6 なら 6 ... the IPv4Address class: packed ¶ reverse_pointer ¶ version ¶ max_prefixlen ¶ is_multicast ¶ is_private ¶ is_g ... objects will raise TypeError if the argument's IP version is incompatible to self . バージョン 3.5 で変更: a ...
https://man.plustar.jp/python/library/ipaddress.html - [similar]
16.4. argparse --- コマンドラインオプション、引数、サブコマンドのパーサー — Pyt... 6496
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... 詳細については ArgumentParser を参照してください。 'version' - このアクションは add_argument() の呼び出しに ve ... r ( prog = 'PROG' ) >>> parser . add_argument ( '--version' , action = 'version' , version = ' %(prog)s 2.0' ... ) >>> parser . parse_args ([ '--version' ]) PROG 2.0 Action のサブクラスまたは同じインター ... 字列に置き換える。 OptionParser のコンストラクターの version 引数を、 parser.add_argument('--version', action=' ...
https://man.plustar.jp/python/library/argparse.html - [similar]
19.1.6. email.headerregistry: カスタムヘッダーオブジェクト — Python 3.6.5 ドキ... 6496
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... count is set to 1. class email.headerregistry. MIMEVersionHeader ¶ There is really only one valid value for t ... he MIME-Version header, and that is 1.0 . For future proofing, thi ... s header class supports other valid version numbers. If a version number has a valid value per ... ave non- None values for the following attributes: version ¶ バージョン番号 (文字列)、空白やコメントは除かれま ...
https://man.plustar.jp/python/library/email.headerregistry.html - [similar]
11.3. fileinput --- 複数の入力ストリームをまたいだ行の繰り返し処理をサポートする... 6496
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... 使うことができるようになりました。 Deprecated since version 3.6, will be removed in version 3.8: The bufsize p ... で非推奨: 'rU' および 'U' モード。 Deprecated since version 3.6, will be removed in version 3.8: The bufsize p ...
https://man.plustar.jp/python/library/fileinput.html - [similar]
20.13. xml.parsers.expat --- Expat を使った高速な XML 解析 — Python 3.6.5 ドキ... 6496
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ットされ、次のような文書が解析されるとします: <?xml version="1.0"?> <root xmlns = "http://default-namespace.or ... すべて文字列となります。 xmlparser. XmlDeclHandler ( version , encoding , standalone ) ¶ XML 宣言が解析された時 ... らびに任意の "standalone" 宣言の (任意の) 宣言です。 version と encoding は文字列で、 standalone は文書がスタン ... subset は true になります。このハンドラには、Expat version 1.2以上が必要です。 xmlparser. EndDoctypeDeclHandl ...
https://man.plustar.jp/python/library/pyexpat.html - [similar]
Python 2 から Python 3 への移植 — Python 3.6.5 ドキュメント 6410
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python HOWTO » Pyth ... e code that has to choose what to do based on what version of Python is running. The best way to do this is w ... ith feature detection of whether the version of Python you're running under supports what you n ... reason that doesn't work then you should make the version check be against Python 2 and not Python 3. To hel ... 書きたくなることがあるでしょう: import sys if sys . version_info [ 0 ] == 3 : from importlib import abc else : ...
https://man.plustar.jp/python/howto/pyporting.html - [similar]
29.2. sysconfig --- Python の構成情報にアクセスする — Python 3.6.5 ドキュメント 6410
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ます。 29.2.3. その他の関数 ¶ sysconfig. get_python_version ( ) ¶ MAJOR.MINOR の型の Python バージョン番号文字 ... 列を返します。 '%d.%d' % sys.version_info[:2] に似ています。 sysconfig. get_platform ( ... n -m sysconfig Platform: "macosx-10.4-i386" Python version: "3.2" Current installation scheme: "posix_prefix" ... S = "rc" ... これは、 get_platform() 、 get_python_version() 、 get_path() および get_config_vars() が返す情報 ...
https://man.plustar.jp/python/library/sysconfig.html - [similar]
3. Defining Extension Types: Assorted Topics — Python 3.6.5 ドキュメント 6166
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python インタプリタ ... list ; destructor tp_del ; /* Type attribute cache version tag. Added in version 2.6 */ unsigned int tp_versi ... い方を使えます。 getattrfunc tp_getattr ; /* char * version */ setattrfunc tp_setattr ; /* ... */ getattrofunc ... tp_getattro ; /* PyObject * version */ setattrofunc tp_setattro ; オブジェクトの属性へ ...
https://man.plustar.jp/python/extending/newtypes.html - [similar]
PREV 1 2 3 4 5 6 7 8 9 10 11 12 NEXT