Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 1 - 10 of about 47 for stop (0.012 sec.)
スライスオブジェクト (slice object) — Python 3.6.5 ドキュメント 14836
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python/C API リファ ... Object * PySlice_New ( PyObject *start , PyObject *stop , PyObject *step ) ¶ Return value: New reference. ... たなスライスオブジェクトを返します。パラメタ start , stop , および step はスライスオブジェクトにおける同名の ... y_ssize_t length , Py_ssize_t *start , Py_ssize_t *stop , Py_ssize_t *step ) ¶ スライスオブジェクト slice ... における start , stop , および step のインデクス値を取得します。このとき ...
https://man.plustar.jp/python/c-api/slice.html - [similar]
18.5.1. 基底イベントループ — Python 3.6.5 ドキュメント 10595
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ループの実行 ¶ AbstractEventLoop. run_forever ( ) ¶ stop() が呼ばれるまで実行します。もし run_forever() が呼 ... ばれる前に stop() が呼ばれた場合、このメソッドは I/O セレクターをタ ... 行した後、終了します。もし run_forever() の実行中に stop() が呼ばれた場合、現在バッチ処理中のコールバックを ... ントループの実行状態を返します。 AbstractEventLoop. stop ( ) ¶ 実行中のイベントループを停止します。 これによ ...
https://man.plustar.jp/python/library/asyncio-eventloop.html - [similar]
10.1. itertools --- 効率的なループ実行のためのイテレータ生成関数 — Python 3.6.5... 10063
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... grouped by value of key(v) islice() seq, [start,] stop [, step] seq[start:stop:step] islice('ABCDEFG', 2, ... iter ( iterable ) try : total = next ( it ) except StopIteration : return yield total for element in it : ... : self . currvalue = next ( self . it ) # Exit on StopIteration self . currkey = self . keyfunc ( self . ... try : self . currvalue = next ( self . it ) except StopIteration : return self . currkey = self . keyfunc ...
https://man.plustar.jp/python/library/itertools.html - [similar]
26.5. unittest.mock --- モックオブジェクトライブラリ — Python 3.6.5 ドキュメン... 9530
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ら戻り値を得ます (イテレート可能オブジェクトが尽きて StopIteration が発生するまで): >>> m = MagicMock ( side ... 3 >>> m () Traceback (most recent call last): ... StopIteration もしイテレート可能オブジェクトの要素が例外 ... t isinstance ( instance , Original ) >>> patcher . stop () new_callable 引数は、デフォルトの MagicMock の代 ... is other ... 26.5.3.5. patch のメソッド: start と stop ¶ すべての patcher は start() と stop() メソッドを ...
https://man.plustar.jp/python/library/unittest.mock.html - [similar]
24.2. cmd --- 行指向のコマンドインタープリタのサポート — Python 3.6.5 ドキュメ... 9363
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... 真を返したときに return します。 postcmd() に対する stop 引数は、このコマンドが対応する do_*() メソッドから ... ていない line を返すかもしれません。 Cmd. postcmd ( stop , line ) ¶ コマンドディスパッチが終わった直後に実行 ... るために存在します。 line は実行されたコマンド行で、 stop は postcmd() の呼び出しの後に実行を停止するかどうか ... d() メソッドの戻り値です。このメソッドの戻り値は、 stop に対応する内部フラグの新しい値として使われます。偽 ...
https://man.plustar.jp/python/library/cmd.html - [similar]
Logging クックブック — Python 3.6.5 ドキュメント 9181
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python HOWTO » Logg ... g import time def worker ( arg ): while not arg [ 'stop' ]: logging . debug ( 'Hi from myfunc' ) time . sl ... reated)6d %(threadName)s %(message)s ' ) info = { 'stop' : False } thread = threading . Thread ( target = ... sleep ( 0.75 ) except KeyboardInterrupt : info [ 'stop' ] = True break thread . join () if __name__ == '_ ... t KeyboardInterrupt : # cleanup logging . config . stopListening () t . join () そしてファイル名を受け取っ ...
https://man.plustar.jp/python/howto/logging-cookbook.html - [similar]
18.5.4. Transports and protocols (callback based API) — Python 3.6.5 ドキュメン... 8998
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... nt ( 'The server closed the connection' ) print ( 'Stop the event loop' ) self . loop . stop () loop = asy ... ction_lost ( self , exc ): print ( "Socket closed, stop the event loop" ) loop = asyncio . get_event_loop ... () loop . stop () loop = asyncio . get_event_loop () message = "H ... lost ( self , exc ): # The socket has been closed, stop the event loop loop . stop () # Register the socke ...
https://man.plustar.jp/python/library/asyncio-protocol.html - [similar]
26.6. unittest.mock --- 入門 — Python 3.6.5 ドキュメント 8831
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... g patches is to use the patch のメソッド: start と stop . These allow you to move the patching into your s ... .. ... def tearDown ( self ): ... self . patcher . stop () ... >>> MyTest ( 'test_foo' ) . run () If you u ... st ensure that the patching is "undone" by calling stop . This can be fiddlier than you might think, becau ... 'mymodule.foo' ) ... self . addCleanup ( patcher . stop ) ... self . mock_foo = patcher . start () ... ... ...
https://man.plustar.jp/python/library/unittest.mock-examples.html - [similar]
27.1. bdb --- デバッガーフレームワーク — Python 3.6.5 ドキュメント 8482
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... はそれを取り除いたものです。 reset ( ) ¶ botframe , stopframe , returnframe , quitting 属性を、デバッグを始 ... 義したい場合には、オーバーライドすることもあります。 stop_here ( frame ) ¶ このメソッドは frame がコールスタ ... 出されます。 user_line ( frame ) ¶ このメソッドは、 stop_here() か break_here() が True を返したときに、 di ... return ( frame , return_value ) ¶ このメソッドは、 stop_here() が True を返したときに、 dispatch_return() ...
https://man.plustar.jp/python/library/bdb.html - [similar]
2. 組み込み関数 — Python 3.6.5 ドキュメント 8482
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... で呼び出します。返された値が sentinel と等しければ、 StopIteration が送出され、そうでなければ、戻り値がそのま ... ult が与えられていればそれが返され、そうでなければ StopIteration が送出されます。 class object ¶ 特徴を持た ... ドックストリングが書き込み可能になりました。 range ( stop ) range ( start , stop [ , step ] ) range は、実際 ... 123) は x.foobar = 123 と等価です。 class slice ( stop ) ¶ class slice ( start , stop [ , step ] ) range( ...
https://man.plustar.jp/python/library/functions.html - [similar]
PREV 1 2 3 4 5 NEXT