Python 3.6.5 ドキュメント 検索
Results of 1 - 10 of about 67 for abc (0.027 sec.)
- 8.4. collections.abc --- コレクションの抽象基底クラス — Python 3.6.5 ドキュメン... 14340
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ
...
リ » 8. データ型 » 8.4. collections.abc --- コレクションの抽象基底クラス ¶ バージョン 3.3...
ュールの一部でした。 ソースコード: Lib/_collections_abc.py このモジュールは、 抽象基底クラス を提供します。...
ョン抽象基底クラス ¶ collections モジュールは以下の ABC (抽象基底クラス) を提供します: ABC 継承しているクラ...
w aclose , __aiter__ , __anext__ class collections.abc. Container ¶ class collections.abc. Hashable ¶ cla...
- https://man.plustar.jp/python/library/collections.abc.html - [similar]
- 29.7. abc --- 抽象基底クラス — Python 3.6.5 ドキュメント 14041
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ
...
リ » 29. Python ランタイムサービス » 29.7. abc --- 抽象基底クラス ¶ ソースコード: Lib/abc.py この...
ython に PEP 3119 で概要が示された 抽象基底クラス (ABC) を定義する基盤を提供します。なぜこれが Python に付...
加えられたかについてはその PEP を参照してください。 (ABC に基づいた数の型階層を扱った PEP 3141 と numbers モ...
ジュールも参照してください。) collections.abc サブモジュールには ABC から派生した具象クラスがいく...
- https://man.plustar.jp/python/library/abc.html - [similar]
- 26.1. typing --- 型ヒントのサポート — Python 3.6.5 ドキュメント 9972
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ
...
x , y in v ) Generic に用いられているメタクラスは abc.ABCMeta のサブクラスです。 ジェネリッククラスは抽象...
s typing. Iterable ( Generic[T_co] ) ¶ collections.abc.Iterable のジェネリック版です。 class typing. Iter...
ator ( Iterable[T_co] ) ¶ collections.abc.Iterator のジェネリック版です。 class typing. Reve...
rsible ( Iterable[T_co] ) ¶ collections.abc.Reversible のジェネリック版です。 class typing. Su...
- https://man.plustar.jp/python/library/typing.html - [similar]
- 31.5. importlib --- import の実装 — Python 3.6.5 ドキュメント 9873
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ
...
同じです。 バージョン 3.4 で追加. 31.5.3. importlib.abc -- インポートに関連する抽象基底クラス ¶ ソースコー...
ド: Lib/importlib/abc.py importlib.abc モジュールは、 import に使われるす...
-+ +-- FileLoader +-- SourceLoader class importlib.abc. Finder ¶ finder を表す抽象基底クラスです。 バージ...
を送出する代わりに None を返します。 class importlib.abc. MetaPathFinder ¶ meta path finder を表す抽象基底ク...
- https://man.plustar.jp/python/library/importlib.html - [similar]
- What's New In Python 3.3 — Python 3.6.5 ドキュメント 8279
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho
...
パッケージの一部として公開されています。 importlib.abc で定義される抽象基底クラスは meta path finder と p...
確に表現するように拡張されて、それぞれ順に importlib.abc.MetaPathFinder と importlib.abc.PathEntryFinder が...
導入されました。古い ABC である importlib.abc.Finder は後方互換性のためだけ...
loader) については、新規の抽象基底クラス importlib.abc.FileLoader が、モジュールのコードを格納する機構とし...
- https://man.plustar.jp/python/whatsnew/3.3.html - [similar]
- What's New In Python 3.4 — Python 3.6.5 ドキュメント 8180
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho
...
目的のコンビニエンス関数へユーザを誘導します: >>> b "abcdef" . decode ( "hex" ) Traceback (most recent call...
まれます: >>> import codecs >>> codecs . decode ( b "abcdefgh" , "hex" ) Traceback (most recent call last):...
plemented by Victor Stinner 改良されたモジュール ¶ abc ¶ 新規関数 abc.get_cache_token() は、オブジェクトグ...
ributed by Łukasz Langa in bpo-16832 .) 新規クラス ABC はそのメタクラスとして ABCMeta を持ちます。この AB...
- https://man.plustar.jp/python/whatsnew/3.4.html - [similar]
- 関数型プログラミング HOWTO — Python 3.6.5 ドキュメント 8080
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python HOWTO » 関数
...
二つなら、出力リストの長さは 9 要素です: >>> seq1 = 'abc' >>> seq2 = ( 1 , 2 , 3 ) >>> [( x , y ) for x in...
がなければ永遠に返し続けます。 itertools . repeat ( 'abc' ) => abc , abc , abc , abc , abc , abc , abc , ab...
c , abc , abc , ... itertools . repeat ( 'abc' , 5 ) => ab...
c , abc , abc , abc , abc itertools.chain(iterA, iterB, .....
- https://man.plustar.jp/python/howto/functional.html - [similar]
- What's New in Python 2.6 — Python 3.6.5 ドキュメント 7966
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho
...
です。3.0 での bytes([65, 66, 67]) は 3 つのバイトで ABC を構築しますが、2.6 での bytes([65, 66, 67]) は引数...
ました: >>> bytearray ([ 65 , 66 , 67 ]) bytearray(b'ABC') >>> b = bytearray ( u ' \u21ef\u3244 ' , 'utf-8'...
かのメソッドをサポートします。 >>> b = bytearray ( 'ABC' ) >>> b . append ( 'd' ) >>> b . append ( ord ( '...
e' )) >>> b bytearray(b'ABCde') 対応する C API もあります。 PyByteArray_FromOb...
- https://man.plustar.jp/python/whatsnew/2.6.html - [similar]
- 4. 組み込み型 — Python 3.6.5 ドキュメント 7454
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ
...
算を完全に実装するのが簡単になるように、 collections.abc.Sequence ABC が提供されています。 以下のテーブルで...
算を完全に実装するのが簡単になるように、 collections.abc.MutableSequence ABC が提供されています。 このテーブ...
と同様にコピーが作られて返されます。例えば、 list('abc') は ['a', 'b', 'c'] を、 list( (1, 2, 3) ) は [1,...
既にタプルなら、そのまま返されます。例えば、 tuple('abc') は ('a', 'b', 'c') を、 tuple( [1, 2, 3] ) は (1...
- https://man.plustar.jp/python/library/stdtypes.html - [similar]
- 用語集 — Python 3.6.5 ドキュメント 7411
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » 用語集 ¶ >>> インタ
...
合) 場合にインタフェースを定義する方法を提供します。ABC は仮想 (virtual) サブクラスを導入します。これは親ク...
れでも isinstance() や issubclass() に認識されます; abc モジュールのドキュメントを参照してください。Python...
には、多くの組み込み ABC が同梱されています。その対象は、( collections.abc...
ルで) 数、( io モジュールで) ストリーム、( importlib.abc モジュールで) インポートファインダ及びローダーです...
- https://man.plustar.jp/python/glossary.html - [similar]