Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 11 - 20 of about 51 for collections (0.053 sec.)
What's New In Python 3.5 — Python 3.6.5 ドキュメント 7508
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho ... を参照してください。) 標準ライブラリーの顕著な改善 collections.OrderedDict が C で実装されました 。 これにより 4 ... ーション文字列が書き込み可能になりました。これは特に collections.namedtuple() のドキュメンテーション文字列で有用です ... した。 (Contributed by Claudiu Popa in bpo-17442 .) collectionscollections.OrderedDict が C で実装されました。 ... f str . (Contributed by Joe Jevnik in bpo-22189 .) collections.abc ¶ The Sequence.index() method now accepts star ...
https://man.plustar.jp/python/whatsnew/3.5.html - [similar]
14.2. configparser --- 設定ファイルのパーサー — Python 3.6.5 ドキュメント 7433
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ict() を使ってください。 dict_type , デフォルト値: collections.OrderedDict このオプションはマップ型プロトコルの振 ... 作には、順序付き辞書を使用する方がよいです: >>> from collections import OrderedDict >>> parser = configparser . Con ... igparser. ConfigParser ( defaults=None , dict_type=collections.OrderedDict , allow_no_value=False , delimiters=(' ... 。 バージョン 3.1 で変更: デフォルトの dict_type は collections.OrderedDict です。 バージョン 3.2 で変更: allow_no ...
https://man.plustar.jp/python/library/configparser.html - [similar]
3. データモデル — Python 3.6.5 ドキュメント 7433
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 言語リファレ ... ェースと機能を提供します。 拡張モジュール array や、 collections モジュールには、さらなるミュータブルなシーケンス型 ... ください)。 拡張モジュール dbm.ndbm 、 dbm.gnu は、 collections モジュールのように、別のマッピング型の例を提供して ... すると適切な TypeError が送出され、 isinstance(obj, collections.Hashable) をチェックするとハッシュ不能なものとして ... を送出する __hash__() を定義すると、 isinstance(obj, collections.Hashable) 呼び出しで誤ってハッシュ可能と識別される ...
https://man.plustar.jp/python/reference/datamodel.html - [similar]
What's New In Python 3.0 — Python 3.6.5 ドキュメント 7433
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho ... ぼ全てが bytearray も許容します。その mutable API は collections.MutableSequence に基づいています。 raw 文字列リテラ ... 様の機能性を提供します。 PEP 3119: 抽象基底クラス . collections モジュール内で定義されている abc モジュールと ABC ... list のようなビルトインのコレクション型はそれぞれ collections.MutableMapping と collections.MutableSequence の A ... 除されました。 callable(f) のかわりに isinstance(f, collections.Callable) を使用してください。 operator.isCallable ...
https://man.plustar.jp/python/whatsnew/3.0.html - [similar]
27.7. tracemalloc --- メモリ割り当ての追跡 — Python 3.6.5 ドキュメント 7373
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... 3199 , average = 167 B / usr / lib / python3 .4 / collections / __init__ . py : 368 : size = 244 KiB , count = 2 ... (bytecode and constants) from modules and that the collections module allocated 244 KiB to build namedtuple types ... + b ) for a in _a85chars for b in _a85chars ] #3: collections/__init__.py:368: 293.6 KiB exec ( class_definition ...
https://man.plustar.jp/python/library/tracemalloc.html - [similar]
What's New In Python 3.4 — Python 3.6.5 ドキュメント 7373
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho ... rhiy Storchaka, and Antoine Pitrou in bpo-17618 .) collections ¶ ChainMap.new_child() メソッドが、チェーンに追加す ... モジュールをロードするようになりました。例えば re , collections , locale モジュール、およびそれらの依存モジュールは ... いテスト失敗を目にするかもしれません。 ( bpo-3158 ) collections.abc モジュールが、Python スタートアップの改善の一環 ... 少々リファクタリングが行われました。これの結果として collections は自動で collections.abc をインポートしなくなりまし ...
https://man.plustar.jp/python/whatsnew/3.4.html - [similar]
Pythonモジュール索引 — Python 3.6.5 ドキュメント 7298
ナビゲーション 索引 モジュール | Python » 3.6.5 ドキュメント » Pythonモジュール索引 _ | a | b | ... codeop Compile (possibly incomplete) Python code. collections Container datatypes collections.abc Abstract base ...
https://man.plustar.jp/python/py-modindex.html - [similar]
29.7. abc --- 抽象基底クラス — Python 3.6.5 ドキュメント 7223
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... EP 3141 と numbers モジュールも参照してください。) collections.abc サブモジュールには ABC から派生した具象クラスが ... もちろんですが、さらに派生させることもできます。また collections モジュールにはいくつかの ABC もあって、あるクラスや ...
https://man.plustar.jp/python/library/abc.html - [similar]
10.1. itertools --- 効率的なループ実行のためのイテレータ生成関数 — Python 3.6.5... 7223
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... rable , n = 2 ): it = iter ( iterable ) deques = [ collections . deque () for i in range ( n )] def gen ( mydeque ... tems" # tail(3, 'ABCDEFG') --> E F G return iter ( collections . deque ( iterable , maxlen = n )) def consume ( i ... feed the entire iterator into a zero-length deque collections . deque ( iterator , maxlen = 0 ) else : # advance ...
https://man.plustar.jp/python/library/itertools.html - [similar]
What's New In Python 3.6 — Python 3.6.5 ドキュメント 7223
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho ... 。 (Contributed by Mark Dickinson in bpo-23229 .) collections ¶ The new Collection abstract base class has been ... ted by Raymond Hettinger in bpo-25628 .) Recursive collections.deque instances can now be pickled. (Contributed b ... g.Collection class has been added for representing collections.abc.Collection . (Contributed by Ivan Levkivskyi i ... 良されたモジュール array ast asyncio binascii cmath collections concurrent.futures contextlib datetime decimal dis ...
https://man.plustar.jp/python/whatsnew/3.6.html - [similar]
PREV 1 2 3 4 5 6 NEXT