Python 3.6.5 ドキュメント 検索
Results of 1 - 10 of about 127 for version (0.033 sec.)
- 16.14. platform --- 実行中プラットフォームの固有情報を参照する — Python 3.6.5 ... 12895
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ
...
ジョンを特定する文字列を返します。 platform. python_version ( ) ¶ Python のバージョンを、 'major.minor.patchle...
vel' 形式の文字列で返します。 sys.version と異なり、patchlevel(デフォルトでは0)も必ず含まれ...
ています。 platform. python_version_tuple ( ) ¶ Pythonのバージョンを、文字列のタプル (...
major, minor, patchlevel) で返します。 sys.version と異なり、patchlevel(デフォルトでは '0' )も必ず含...
- https://man.plustar.jp/python/library/platform.html - [similar]
- 7. 使用例 — Python 3.6.5 ドキュメント 10436
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python モジュールの
...
distutils.core import setup setup ( name = 'foo' , version = '1.0' , py_modules = [ 'foo' ], ) 配布物の名前は...
tutils.core import setup setup ( name = 'foobar' , version = '1.0' , py_modules = [ 'foo' , 'bar' ], ) モジュ...
tutils.core import setup setup ( name = 'foobar' , version = '1.0' , packages = [ '' ], ) のようにも書けます...
tutils.core import setup setup ( name = 'foobar' , version = '1.0' , package_dir = { '' : 'src' }, packages =...
- https://man.plustar.jp/python/distutils/examples.html - [similar]
- Unicode オブジェクトと codec — Python 3.6.5 ドキュメント 9616
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python/C API リファ
...
ません (ただしチェックはしません)。 Deprecated since version 3.3, will be removed in version 4.0: 古いスタイルの...
ません (ただしチェックはしません)。 Deprecated since version 3.3, will be removed in version 4.0: 古いスタイルの...
READ() を使うようにしてください。 Deprecated since version 3.3, will be removed in version 4.0: 古いスタイルの...
追加. 廃止予定の Py_UNICODE API群 ¶ Deprecated since version 3.3, will be removed in version 4.0. これらのAPI 関...
- https://man.plustar.jp/python/c-api/unicode.html - [similar]
- 29.1. sys --- システムパラメータと関数 — Python 3.6.5 ドキュメント 9371
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ
...
too many! >>> format ( float ( s ), '.16g' ) # conversion changes value '9876543211234568' sys. float_repr_s...
実装では利用できないかもしれません。 sys. getwindowsversion ( ) ¶ Return a named tuple describing the Windows...
ack_major , suite_mask , product_type and platform_version . service_pack contains a string, platform_version...
nts can also be accessed by name, so sys.getwindowsversion()[0] is equivalent to sys.getwindowsversion().majo...
- https://man.plustar.jp/python/library/sys.html - [similar]
- 21.22. http.server --- HTTP サーバ — Python 3.6.5 ドキュメント 9041
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ
...
ath ¶ リクエストされたパスが入っています。 request_version ¶ リクエストのバージョン文字列が入っています。例え...
PRequestHandler は以下の属性を持っています: server_version ¶ サーバのソフトウェアバージョンを指定します。この...
の形式をとります。例えば、 'BaseHTTP/0.2' です。 sys_version ¶ Python 処理系のバージョンが, version_string メソ...
ッドや server_version クラス変数で利用可能な形式で入っています。例えば '...
- https://man.plustar.jp/python/library/http.server.html - [similar]
- API と ABI のバージョニング — Python 3.6.5 ドキュメント 8955
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python/C API リファ
...
レンスマニュアル » API と ABI のバージョニング ¶ PY_VERSION_HEX は、Python のバージョン番号を単一の整数に符号化...
したものです。 例えば、 PY_VERSION_HEX に 0x030401a2 が設定されていれば、その値を下記...
ット (ビッグエンディアンオーダ) 意味 1 1-8 PY_MAJOR_VERSION ( 3.4.1a2 中の 3 ) 2 9-16 PY_MINOR_VERSION ( 3.4.1...
a2 中の 4 ) 3 17-24 PY_MICRO_VERSION ( 3.4.1a2 中の 1 ) 4 25-28 PY_RELEASE_LEVEL (アルフ...
- https://man.plustar.jp/python/c-api/apiabiversion.html - [similar]
- 21.20. uuid --- UUID objects according to RFC 4122 — Python 3.6.5 ドキュメント 8710
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ
...
es=None , bytes_le=None , fields=None , int=None , version=None ) ¶ Create a UUID from either a string of 32...
32-bit time_low , 16-bit time_mid , 16-bit time_hi_version , 8-bit clock_seq_hi_variant , 8-bit clock_seq_low...
es , bytes_le , fields , or int must be given. The version argument is optional; if given, the resulting UUID...
will have its variant and version number set according to RFC 4122, overriding bits...
- https://man.plustar.jp/python/library/uuid.html - [similar]
- データ整列化 (data marshalling) のサポート — Python 3.6.5 ドキュメント 8625
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python/C API リファ
...
対してバイナリフォーマットを利用します。 Py_MARSHAL_VERSION は現在のバージョン (バージョン 2) を示します。 voi...
al_WriteLongToFile ( long value , FILE *file , int version ) ¶ long 型の整数値 value を file へ整列化します。...
けです; ネイティブの long 型サイズには関知しません。 version はファイルフォーマットを示します。 void PyMarshal_...
eObjectToFile ( PyObject *value , FILE *file , int version ) ¶ Python オブジェクト value を file へ整列化しま...
- https://man.plustar.jp/python/c-api/marshal.html - [similar]
- 12.4. marshal --- 内部使用向けの Python オブジェクト整列化 — Python 3.6.5 ドキ... 8625
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ
...
d and unmarshalled) できます。3 未満のフォーマット version では、再帰的なリスト、 set 、辞書を書き出すことはで...
定義されています。 marshal. dump ( value , file [ , version ] ) ¶ Write the value on the open file. The value...
クトは load() で適切に読み出されることはありません。 version 引数は dump が使用するデータフォーマットを指定しま...
read (e.g. because the data has a different Python version's incompatible marshal format), raise EOFError , V...
- https://man.plustar.jp/python/library/marshal.html - [similar]
- Python 3 への拡張モジュール移植 — Python 3.6.5 ドキュメント 8539
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python HOWTO » Pyth
...
だけコンパイルするための一番簡単な方法は、 PY_MAJOR_VERSION が 3 以上かどうかチェックすることです。 #if PY_MAJ...
OR_VERSION >= 3 #define IS_PY3K #endif 存在しなくなった関数に...
module_state { PyObject * error ; }; #if PY_MAJOR_VERSION >= 3 #define GETSTATE(m) ((struct module_state*)Py...
H_NOARGS , NULL }, { NULL , NULL } }; #if PY_MAJOR_VERSION >= 3 static int myextension_traverse ( PyObject *...
- https://man.plustar.jp/python/howto/cporting.html - [similar]