Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 41 - 50 of about 127 for version (0.099 sec.)
13.1. zlib --- gzip 互換の圧縮 — Python 3.6.5 ドキュメント 5994
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... バージョン情報を以下の定数で確認できます: zlib. ZLIB_VERSION ¶ モジュールのビルド時に使用された zlib ライブラリ ... のバージョン文字列です。これは ZLIB_RUNTIME_VERSION で確認できる、実行時に使用している実際の zlib ライ ... ジョンとは異なる場合があります。 zlib. ZLIB_RUNTIME_VERSION ¶ インタプリタが読み込んだ実際の zlib ライブラリの ...
https://man.plustar.jp/python/library/zlib.html - [similar]
What's New in Python 2.0 — Python 3.6.5 ドキュメント 5994
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho ... defaultencoding(encoding) function in a customized version of site.py . 8 ビット文字列と Unicode 文字列を結合 ... 詳細なバージョン情報を持つ変数が追加されました。 sys.version_info はタプル (major, minor, micro, level, serial) ... 仮に 2.0.1beta1 というバージョンだったとすれば、 sys.version_info は (2, 0, 1, 'beta', 1) となるでしょう。 leve ... distutils.core import setup setup ( name = "foo" , version = "1.0" , py_modules = [ "module1" , "module2" ]) ...
https://man.plustar.jp/python/whatsnew/2.0.html - [similar]
What's New In Python 3.5 — Python 3.6.5 ドキュメント 5994
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho ... Yury Selivanov in bpo-24184 .) For earlier Python versions, a backport of the new ABCs is available in an ex ... onfigparser now provides a way to customize the conversion of values by specifying a dictionary of converters ... pickled using pickle protocols older than protocol version 4. Protocol version 4 already supports these cases ... s present. その他の変更 ¶ There is a new SSLSocket.version() method to query the actual protocol version in u ...
https://man.plustar.jp/python/whatsnew/3.5.html - [similar]
Download — Python 3.6.5 ドキュメント 5921
ナビゲーション 索引 モジュール | Python » 3.6.5 ドキュメント » Download Python 3.6.5 Documentati ... d an archive containing all the documents for this version of Python in one of various formats, follow one of ...
https://man.plustar.jp/python/download.html - [similar]
19.1.9. email.message.Message: Representing an email message using the compat32 ... 5921
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... accessing the payload, for generating a serialized version of the message, and for recursively walking over t ... intains backward compatibility with the Python 3.2 version of the email package. For more information see the ... トとして指定した場合、 TypeError を送出します。 MIME-Version ヘッダが存在しなければ、追加されます。 Content-Typ ... す。 Content-Type ヘッダが設定される場合には、 MIME-Version ヘッダも同時に付加されます。 This is a legacy meth ...
https://man.plustar.jp/python/library/email.compat32-message.html - [similar]
21.12. http.client --- HTTP プロトコルクライアント — Python 3.6.5 ドキュメント 5921
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... nsfer encoding has been added to the HTTP protocol version 1.1. Unless the HTTP server is known to handle HTT ... of the method string, the url string, and the HTTP version ( HTTP/1.1 ). To disable automatic sending of Host ... subclass of email.message.Message . HTTPResponse. version ¶ サーバが使用した HTTP プロトコルバージョンです。 ...
https://man.plustar.jp/python/library/http.client.html - [similar]
6.5. unicodedata --- Unicode データベース — Python 3.6.5 ドキュメント 5921
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ontained in this database is compiled from the UCD version 9.0.0 . このモジュールは、ユニコード標準付録 #44 「 ... ュールは以下の定数を公開します: unicodedata. unidata_version ¶ このモジュールで使われている Unicode データベース ...
https://man.plustar.jp/python/library/unicodedata.html - [similar]
What's New in Python 2.3 — Python 3.6.5 ドキュメント 5921
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho ... e's an alternative notation ( ^ ), and an in-place version with the ungainly name symmetric_difference_update ... e metadata describing a package, such as its name, version, maintainer, description, &c., and send it to a ce ... distutils import core kw = { 'name' : "Quixote" , 'version' : "0.5.1" , 'description' : "A highly Pythonic We ... SL) サポートが始まりました。 C マクロの PYTHON_API_VERSION の値が Python レベルで sys.api_version として公開さ ...
https://man.plustar.jp/python/whatsnew/2.3.html - [similar]
関数型プログラミング HOWTO — Python 3.6.5 ドキュメント 5835
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python HOWTO » 関数 ... meiro, Jussi Salmela, Collin Winter, Blake Winton. Version 0.1: posted June 30 2006. Version 0.11: posted Jul ... y 1 2006. Typo fixes. Version 0.2: posted July 10 2006. Merged genexp and listco ... mp sections into one. Typo fixes. Version 0.21: Added more references suggested on the tutor ... mailing list. Version 0.30: Adds a section on the functional module writ ...
https://man.plustar.jp/python/howto/functional.html - [similar]
19.1.1. email.message: 電子メールメッセージの表現 — Python 3.6.5 ドキュメント 5835
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... rating on the payload, for generating a serialized version of the message, and for recursively walking over t ... is identical to EmailMessage , except that no MIME-Version headers are added when set_content() is called, si ... nce sub-parts do not need their own MIME-Version headers. 脚注 [1] Originally added in 3.4 as a pro ...
https://man.plustar.jp/python/library/email.message.html - [similar]
PREV 1 2 3 4 5 6 7 8 9 10 11 12 13 NEXT