Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 41 - 50 of about 129 for call (0.092 sec.)
16.4. argparse --- コマンドラインオプション、引数、サブコマンドのパーサー — Pyt... 5982
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ' , help = 'new foo help' ) Traceback (most recent call last): .. ArgumentError : argument --foo: conflict ... するお奨めの方法は、 argparse.Action を継承して、 __call__ と、必要であれば __init__ をオーバライドすること ... __ ( option_strings , dest , ** kwargs ) ... def __call__ ( self , parser , namespace , values , option_st ... ず、したがって、サブクラスは 4 つの引数を受け取る __call__ メソッドをオーバライドしなければなりません: pars ...
https://man.plustar.jp/python/library/argparse.html - [similar]
9.4. decimal --- 十進固定及び浮動小数点数の算術演算 — Python 3.6.5 ドキュメント 5982
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... = True >>> Decimal ( 3.14 ) Traceback (most recent call last): File "<stdin>" , line 1 , in <module> decim ... >>> Decimal ( '3.5' ) < 3.7 Traceback (most recent call last): File "<stdin>" , line 1 , in <module> decim ... ( "1e9999999999999999999" ) Traceback (most recent call last): File "<stdin>" , line 1 , in <module> decim ... imal ( 42 ) / Decimal ( 0 ) Traceback (most recent call last): File "<pyshell#143>" , line 1 , in -topleve ...
https://man.plustar.jp/python/library/decimal.html - [similar]
What's New In Python 3.5 — Python 3.6.5 ドキュメント 5982
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho ... >>> b 'Hello %b!' % 'World' Traceback (most recent call last): File "<stdin>" , line 1 , in <module> TypeE ... ield ... >>> next ( gen ()) Traceback (most recent call last): File "<stdin>" , line 2 , in gen StopIterat ... of the following exception: Traceback (most recent call last): File "<stdin>" , line 1 , in <module> Runti ... r requires the address to be resolved prior to the call. (Contributed by A. Jesse Jiryu Davis.) bz2 ¶ BZ2D ...
https://man.plustar.jp/python/whatsnew/3.5.html - [similar]
Logging クックブック — Python 3.6.5 ドキュメント 5921
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python HOWTO » Logg ... of auxiliary_module.Auxiliary' ) logger . info ( 'calling auxiliary_module.Auxiliary.do_something' ) a . ... _module.Auxiliary.do_something' ) logger . info ( 'calling auxiliary_module.some_function()' ) auxiliary_m ... me_function (): module_logger . info ( 'received a call to "some_function"' ) 出力はこのようになります: 20 ... 005-03-23 23:47:11,668 - spam_application - INFO - calling auxiliary_module.Auxiliary.do_something 2005-03 ...
https://man.plustar.jp/python/howto/logging-cookbook.html - [similar]
21.13. ftplib --- FTPプロトコルクライアント — Python 3.6.5 ドキュメント 5921
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... e of the FTP class. When host is given, the method call connect(host) is made. When user is given, additio ... nally the method call login(user, passwd, acct) is made (where passwd an ... y a different port number. This function should be called only once for each instance; it should not be ca ... error_reply を発生します。 FTP. retrbinary ( cmd , callback , blocksize=8192 , rest=None ) ¶ Retrieve a fi ...
https://man.plustar.jp/python/library/ftplib.html - [similar]
3. データモデル — Python 3.6.5 ドキュメント 5921
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 言語リファレ ... のマッピング型の例を提供しています。 呼び出し可能型 (callable type) 関数呼び出し操作 ( 呼び出し (call) 参照) ... は async for 文で関数の本体を実行するのに使えます。 Calling the asynchronous iterator's aiterator.__anext__ ... ンスタンス 任意のクラスのインスタンスは、クラスで __call__() メソッドを定義することで呼び出し可能になります ... available at the time when the __del__() method is called. object. __repr__ ( self ) ¶ repr() 組み込み関数 ...
https://man.plustar.jp/python/reference/datamodel.html - [similar]
モジュールオブジェクト (module object) — Python 3.6.5 ドキュメント 5872
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python/C API リファ ... traverseproc m_traverse ¶ A traversal function to call during GC traversal of the module object, or NULL ... if not needed. This function may be called before module state is allocated ( PyModule_GetS ... is executed. inquiry m_clear ¶ A clear function to call during GC clearing of the module object, or NULL i ... f not needed. This function may be called before module state is allocated ( PyModule_GetS ...
https://man.plustar.jp/python/c-api/module.html - [similar]
29.12. inspect --- 活動中のオブジェクトの情報を取得する — Python 3.6.5 ドキュメ... 5872
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ョン 3.3 で追加. The Signature object represents the call signature of a callable object and its return anno ... use the signature() function. inspect. signature ( callable , * , follow_wrapped=True ) ¶ 与えられた calla ... rapped parameter. Pass False to get a signature of callable specifically ( callable.__wrapped__ will not b ... e used to unwrap decorated callables.) 注釈 Some callables may not be introspectab ...
https://man.plustar.jp/python/library/inspect.html - [similar]
11.1. pathlib --- オブジェクト指向のファイルシステムパス — Python 3.6.5 ドキュ... 5872
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ) < PurePosixPath ( 'foo' ) Traceback (most recent call last): File "<stdin>" , line 1 , in <module> TypeE ... p . relative_to ( '/usr' ) Traceback (most recent call last): File "<stdin>" , line 1 , in <module> File ... . with_name ( 'setup.py' ) Traceback (most recent call last): File "<stdin>" , line 1 , in <module> File ... WindowsPath ( 'setup.py' ) Traceback (most recent call last): File "<stdin>" , line 1 , in <module> File ...
https://man.plustar.jp/python/library/pathlib.html - [similar]
21.17. smtplib --- SMTP プロトコルクライアント — Python 3.6.5 ドキュメント 5872
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... parameters are given, the SMTP connect() method is called with those parameters during initialization. If ... is found using socket.getfqdn() . If the connect() call returns anything other than a success code, an SMT ... like this, the SMTP QUIT command is issued automatically when the with statement exits. E.g.: >>> from smt ... h element of esmtp_features . authobject must be a callable object taking an optional single argument: dat ...
https://man.plustar.jp/python/library/smtplib.html - [similar]
PREV 1 2 3 4 5 6 7 8 9 10 11 12 13 NEXT