Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 1 - 10 of about 274 for IN (0.008 sec.)
What's New In Python 3.6 — Python 3.6.5 ドキュメント 9698
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho ... n » What's New In Python 3.6 ¶ エディタ: Elvis Pranskevichus < elvis ... 追加 . CPython の実装の改善: dict 型は、 Raymond Hettinger の提案に基づき、 PyPy dict implementation と同様 ... improvements, and a fair amount of bug fixes. Starting with Python 3.6 the asyncio module is no longer p ... ike objects . All standard library functions operating on paths have been updated to work with the new p ...
https://man.plustar.jp/python/whatsnew/3.6.html - [similar]
What's New In Python 3.5 — Python 3.6.5 ドキュメント 9445
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho ... n » What's New In Python 3.5 ¶ エディタ: Elvis Pranskevichus < elvis ... ッキングへの一般化。 新たなライブラリモジュール: typing : PEP 484 -- 型ヒント 。 zipapp : PEP 441 Python ... yview.hex() メソッド。 (Contributed by Arnon Yaari in bpo-9951 .) memoryview クラスが、(複数次元の場合を ... ポートするようになりました。 ( bpo-23632 におけるAntoine Pitrouによる貢献です。) ジェネレータに gi_yieldfr ...
https://man.plustar.jp/python/whatsnew/3.5.html - [similar]
What's New In Python 3.4 — Python 3.6.5 ドキュメント 8636
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho ... n » What's New In Python 3.4 ¶ 著者: R. David Murray < rdmurray @ bi ... 。 新しく作成されたファイル記述子が継承不可能 (non-inheritable) になりました ( PEP 446 )。 隔離モード ( ... le の新しい プロトコル 4 ( PEP 3154 ). multiprocessing が Unix で os.fork の使用を避けるオプションを持つ ... た。これは MIME 処理を簡単にします 。 ( bpo-18891 ) inspect と pydoc が以前よりも遥かに幅広い種類の calla ...
https://man.plustar.jp/python/whatsnew/3.4.html - [similar]
Argument Clinic How-To — Python 3.6.5 ドキュメント 8237
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python HOWTO » Argu ... ment Clinic How-To ¶ 著者: Larry Hastings 概要 Argument Clin ... は CPython の C ファイルのプリプロセッサです。builtin の中の、退屈な引数解析のコードを自動化するのが目的 ... です。このドキュメントでは、C関数を Argument Clinic 化する方法を示し、さらに高度な Argument Clinic の ... 利用方法について説明します。 Currently Argument Clinic is considered internal-only for CPython. Its use ...
https://man.plustar.jp/python/howto/clinic.html - [similar]
10.1. itertools --- 効率的なループ実行のためのイテレータ生成関数 — Python 3.6.5... 7789
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... きます: sum(map(operator.mul, vector1, vector2)) 。 Infinite iterators: イテレータ 引数 結果 使用例 count ... p2, ... accumulate([1,2,3,4,5]) --> 1 3 6 10 15 chain() p, q, ... p0, p1, ... plast, q0, q1, ... chain(' ... ABC', 'DEF') --> A B C D E F chain.from_iterable() iterable p0, p1, ... plast, q0, q1 ... , ... chain.from_iterable(['ABC', 'DEF']) --> A B C D E F comp ...
https://man.plustar.jp/python/library/itertools.html - [similar]
What's New In Python 3.3 — Python 3.6.5 ドキュメント 7789
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho ... n » What's New In Python 3.3 ¶ この記事では 3.2 と比較した Python 3. ... n by Carl Meyer; implementation by Carl Meyer and Vinay Sajip PEP 420: 暗黙的な名前空間パッケージ ¶ __in ... リビューもまた、 hashable です。 (Contributed by Antoine Pitrou in bpo-13411 .) 1 次元配列型での任意のスラ ... 植 を参照してください。 (Contributed by Stefan Krah in bpo-10181 .) 参考 PEP 3118 - Revising the Buffer P ...
https://man.plustar.jp/python/whatsnew/3.3.html - [similar]
19.1.1. email.message: 電子メールメッセージの表現 — Python 3.6.5 ドキュメント 7741
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ge.py バージョン 3.6 で追加: [1] The central class in the email package is the EmailMessage class, impor ... ailMessage provides the core functionality for setting and querying header fields, for accessing message ... bodies, and for creating or modifying structured messages. An email messag ... e. The payload may be a simple text message, or a binary object, or a structured sequence of sub-message ...
https://man.plustar.jp/python/library/email.message.html - [similar]
19.1.6. email.headerregistry: カスタムヘッダーオブジェクト — Python 3.6.5 ドキ... 7711
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ar class used to represent a given header is determined by the header_factory of the policy in effect wh ... _factory implemented by the email package for handling RFC 5322 compliant email messages, which not only ... tions to add their own custom header types. When using any of the policy objects derived from EmailPolic ... r class has an additional base class that is determined by the type of the header. For example, many hea ...
https://man.plustar.jp/python/library/email.headerregistry.html - [similar]
19.1.4. email.policy: ポリシーオブジェクト — Python 3.6.5 ドキュメント 7682
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... あれば、そうでないものもあります。Eメールを使ったworkingのときでさえも、厳密なRFC準拠にしないのが望ましいこ ... vior of various components of the email package during use. Policy instances can be passed to various cl ... asses and methods in the email package to alter the default behavior. T ... low. There is a default policy used by all classes in the email package. For all of the parser classes a ...
https://man.plustar.jp/python/library/email.policy.html - [similar]
5. データ構造 — Python 3.6.5 ドキュメント 7565
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python チュートリア ... 張します。 a[len(a):] = iterable と等価です。 list. insert ( i , x ) 指定した位置に要素を挿入します。第 1 ... デクスを持つ要素の直前に挿入が行われます。従って、 a.insert(0, x) はリストの先頭に挿入を行います。また a.i ... 全ての要素を削除します。 del a[:] と等価です。 list. index ( x [ , start [ , end ] ] ) リスト中で、値 x を ... reverse=False ) リストの項目を、インプレース演算 (in place、元のデータを演算結果で置き換えるやりかた) で ...
https://man.plustar.jp/python/tutorial/datastructures.html - [similar]
PREV 1 2 3 4 5 6 7 8 9 10 NEXT