Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 31 - 40 of about 50 for Generator (0.080 sec.)
What's New In Python 3.5 — Python 3.6.5 ドキュメント 6933
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho ... のインポートが必要です: >>> from __future__ import generator_stop >>> def gen (): ... next ( iter ([])) ... yie ... le "<stdin>" , line 1 , in <module> RuntimeError : generator raised StopIteration __future__ をインポートしてお ... ributed by Devin Jeanpierre in bpo-23086 .) 新たに Generator 抽象基底クラスが追加されました。 (Contributed by S ... email bodies are prefixed with a ">" character by generators. The default is True for compat32 and False for a ...
https://man.plustar.jp/python/whatsnew/3.5.html - [similar]
7.2. codecs --- codec レジストリと基底クラス — Python 3.6.5 ドキュメント 6873
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... 供給される入力を反復的にエンコードします。この関数は generator です。 errors 引数は (他のあらゆるキーワード引数と ... ら供給される入力を反復的にデコードします。この関数は generator です。 errors 引数は (他のあらゆるキーワード引数と ...
https://man.plustar.jp/python/library/codecs.html - [similar]
21.13. ftplib --- FTPプロトコルクライアント — Python 3.6.5 ドキュメント 6873
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... desired (e.g. ["type", "size", "perm"] ). Return a generator object yielding a tuple of two elements for every ...
https://man.plustar.jp/python/library/ftplib.html - [similar]
17.2. multiprocessing --- プロセスベースの並列処理 — Python 3.6.5 ドキュメント 6873
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... self ): print ( 'you called Foo._h()' ) # A simple generator function def baz (): for i in range ( 10 ): yield ... i * i # Proxy type for generator objects class GeneratorProxy ( BaseProxy ): _expos ... ' , Foo , exposed = ( 'g' , '_h' )) # register the generator function baz; use `GeneratorProxy` to make proxies ... MyManager . register ( 'baz' , baz , proxytype = GeneratorProxy ) # register get_operator_module(); make publ ...
https://man.plustar.jp/python/library/multiprocessing.html - [similar]
9.6. random --- 擬似乱数を生成する — Python 3.6.5 ドキュメント 6873
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... onally equidistributed uniform pseudorandom number generator", ACM Transactions on Modeling and Computer Simula ...
https://man.plustar.jp/python/library/random.html - [similar]
8.8. weakref --- 弱参照 — Python 3.6.5 ドキュメント 6873
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... クト、frozenset オブジェクト、 file オブジェクト 、 generator 型のオブジェクト、socket オブジェクト、array オジェ ...
https://man.plustar.jp/python/library/weakref.html - [similar]
21.26. xmlrpc.client --- XML-RPC クライアントアクセス — Python 3.6.5 ドキュメン... 6873
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... エストの形で伝送します。呼び出し結果はジェネレータ( generator )になります。このジェネレータにわたってイテレーショ ...
https://man.plustar.jp/python/library/xmlrpc.client.html - [similar]
What's New in Python 2.2 — Python 3.6.5 ドキュメント 6873
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho ... レータを使えるようにするには from __future__ import generators ステートメントをモジュールソースコードの先頭付近に ... 合に使います: >>> gen = generate_ints ( 3 ) >>> gen <generator object at 0x8117f90> >>> gen . next () 0 >>> gen . ... くのは格段にややこしいことになります。 Lib/test/test_generators.py にはもっと面白い例がたくさん含まれています。一 ... 下記例はもっとスッキリ書けます。---): # A recursive generator that generates Tree leaves in in-order. def inorde ...
https://man.plustar.jp/python/whatsnew/2.2.html - [similar]
What's New In Python 3.6 — Python 3.6.5 ドキュメント 6873
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho ... を書くことができます。 参考 PEP 525 -- Asynchronous Generators PEP written and implemented by Yury Selivanov. PE ... ens, and similar. 警告 Note that the pseudo-random generators in the random module should NOT be used for secur ... asyncgens() to properly close pending asynchronous generators before closing the loop. (Contributed by Yury Sel ... ed by Ivan Levkivskyi in bpo-25987 .) The new AsyncGenerator abstract base class represents asynchronous genera ...
https://man.plustar.jp/python/whatsnew/3.6.html - [similar]
18.5.1. 基底イベントループ — Python 3.6.5 ドキュメント 6812
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... _asyncgens ( ) ¶ 現在オープンの全ての asynchronous generator オブジェクトをスケジュールし、 aclose() 呼び出しに ...
https://man.plustar.jp/python/library/asyncio-eventloop.html - [similar]
PREV 1 2 3 4 5 NEXT