Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 21 - 30 of about 129 for call (0.078 sec.)
1. C や C++ による Python の拡張 — Python 3.6.5 ドキュメント 6384
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python インタプリタ ... 。 1.1. 簡単な例 ¶ Let's create an extension module called spam (the favorite food of Monty Python fans...) ... nd returns an integer. We want this function to be callable from Python as follows: >>> import spam >>> st ... の一部になっていることでしょう: static PyObject * my_callback = NULL ; static PyObject * my_set_callback ( P ... ect * temp ; if ( PyArg_ParseTuple ( args , "O:set_callback" , & temp )) { if ( ! PyCallable_Check ( temp ...
https://man.plustar.jp/python/extending/extending.html - [similar]
Python で Curses プログラミング — Python 3.6.5 ドキュメント 6384
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python HOWTO » Pyth ... oesn't include the curses module. A ported version called UniCurses is available. You could also try the C ... thing, curses must be initialized. This is done by calling the initscr() function, which will determine th ... ct representing the entire screen; this is usually called stdscr after the name of the corresponding C var ... ay them under certain circumstances. This requires calling the noecho() function. curses . noecho () 通常ア ...
https://man.plustar.jp/python/howto/curses.html - [similar]
ipaddressモジュールの紹介 — Python 3.6.5 ドキュメント 6384
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python HOWTO » ipad ... _network ( '192.0.2.1/24' ) Traceback (most recent call last): ... ValueError : 192.0.2.1/24 has host bits ... address ( "192.168.0.256" ) Traceback (most recent call last): ... ValueError : '192.168.0.256' does not a ... Address ( "192.168.0.256" ) Traceback (most recent call last): ... ipaddress.AddressValueError : Octet 256 ... etwork ( "192.168.0.1/64" ) Traceback (most recent call last): ... ValueError : '192.168.0.1/64' does not ...
https://man.plustar.jp/python/howto/ipaddress.html - [similar]
4. その他の制御フローツール — Python 3.6.5 ドキュメント 6384
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python チュートリア ... ) ... a , b = b , a + b ... print () ... >>> # Now call the function we just defined: ... fib ( 2000 ) 0 1 ... ル内に取り込まれます。そうすることで、引数は 値渡し (call by value) で関数に渡されることになります (ここでの ... b ... return result ... >>> f100 = fib2 ( 100 ) # call it >>> f100 # write the result [0, 1, 1, 2, 3, 5, ... >>> function ( 0 , a = 0 ) Traceback (most recent call last): File "<stdin>" , line 1 , in <module> TypeE ...
https://man.plustar.jp/python/tutorial/controlflow.html - [similar]
26.3. doctest --- 対話的な実行例をテストする — Python 3.6.5 ドキュメント 6323
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... 480000000 >>> factorial(-1) Traceback (most recent call last): ... ValueError: n must be >= 0 Factorials o ... nteger: >>> factorial(30.1) Traceback (most recent call last): ... ValueError: n must be exact integer >>> ... large: >>> factorial(1e100) Traceback (most recent call last): ... OverflowError: n too large """ import m ... factorial(1e100) Expecting: Traceback (most recent call last): ... OverflowError: n too large ok 2 items p ...
https://man.plustar.jp/python/library/doctest.html - [similar]
29.9. traceback --- スタックトレースの表示または取得 — Python 3.6.5 ドキュメン... 6323
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... tb が None でない場合ヘッダ Traceback (most recent call last): を出力します スタックトレースの後に例外 ety ... jack() *** print_exception: Traceback (most recent call last): File "<doctest...>", line 10, in <module> l ... out of range *** print_exc: Traceback (most recent call last): File "<doctest...>", line 10, in <module> l ... t_exc, first and last line: Traceback (most recent call last): IndexError: tuple index out of range *** fo ...
https://man.plustar.jp/python/library/traceback.html - [similar]
16.10. curses --- 文字セル表示を扱うための端末操作 — Python 3.6.5 ドキュメント 6213
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... e virtual screen may be updated by a noutrefresh() call after write operations such as addstr() have been ... performed on a window. The normal refresh() call is simply noutrefresh() followed by doupdate() ; i ... aps reduce screen flicker by issuing noutrefresh() calls on all windows, followed by a single doupdate() . ... ilter ( ) ¶ The filter() routine, if used, must be called before initscr() is called. The effect is that, ...
https://man.plustar.jp/python/library/curses.html - [similar]
26. 開発ツール — Python 3.6.5 ドキュメント 6213
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... パー 26.5.5.1. sentinel 26.5.5.2. DEFAULT 26.5.5.3. call 26.5.5.4. create_autospec 26.5.5.5. ANY 26.5.5.6. ... ch デコレータ 26.6.3. さらなる例 26.6.3.1. chained call をモックする 26.6.3.2. 部分的なモック 26.6.3.3. ジ ... で import をモックする 26.6.3.12. Tracking order of calls and less verbose call assertions 26.6.3.13. More ...
https://man.plustar.jp/python/library/development.html - [similar]
19.1.1. email.message: 電子メールメッセージの表現 — Python 3.6.5 ドキュメント 6213
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... value contains non-ASCII characters, it is automatically encoded in RFC 2231 format using a CHARSET of utf ... es with the object on which the get_body method is called. If related is not included in preferencelist , ... tching starts with the object on which get_body is called, calling get_body on a multipart/related will re ... _content ( *args , content_manager=None , **kw ) ¶ Call the get_content() method of the content_manager , ...
https://man.plustar.jp/python/library/email.message.html - [similar]
8.13. enum --- 列挙型のサポート — Python 3.6.5 ドキュメント 6152
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... UARE = 2 ... SQUARE = 3 ... Traceback (most recent call last): ... TypeError : Attempted to reuse key: 'SQ ... THREE = 3 ... FOUR = 3 ... Traceback (most recent call last): ... ValueError : duplicate values found in ... Color . RED < Color . BLUE Traceback (most recent call last): File "<stdin>" , line 1 , in <module> TypeE ... Color ): ... PINK = 17 ... Traceback (most recent call last): ... TypeError : Cannot extend enumerations ...
https://man.plustar.jp/python/library/enum.html - [similar]
PREV 1 2 3 4 5 6 7 8 9 10 11 12 NEXT