Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 1 - 10 of about 140 for Use (0.029 sec.)
Argument Clinic How-To — Python 3.6.5 ドキュメント 14085
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python HOWTO » Argu ... linic is considered internal-only for CPython. Its use is not supported for files outside CPython, and no ... y. (The docstring doesn't need it anymore—when you use help() on your builtin in the future, the first li ... is is the first time that module or class has been used with Argument Clinic in this C file, you must dec ... pects of its type in C: the type declaration you'd use for a pointer to an instance of this class, and a ...
https://man.plustar.jp/python/howto/clinic.html - [similar]
21.26. xmlrpc.client --- XML-RPC クライアントアクセス — Python 3.6.5 ドキュメン... 10093
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... .py XML-RPC is a Remote Procedure Call method that uses XML passed via HTTP(S) as a transport. With it, a ... encoding=None , verbose=False , allow_none=False , use_datetime=False , use_builtin_types=False , * , con ... text=None ) ¶ バージョン 3.3 で変更: use_builtin_types フラグが追加されました。 A ServerPro ... ebugging flag. The following parameters govern the use of the returned proxy instance. If allow_none is t ...
https://man.plustar.jp/python/library/xmlrpc.client.html - [similar]
整数型オブジェクト (integer object) — Python 3.6.5 ドキュメント 9938
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python/C API リファ ... pe)-1 which cannot be distinguished from a number. Use PyErr_Occurred() to disambiguate. PyLongObject ¶ こ ... OverflowError を送出します。 Returns -1 on error. Use PyErr_Occurred() to disambiguate. long PyLong_AsLo ... 0 に設定され -1 を返します。 Returns -1 on error. Use PyErr_Occurred() to disambiguate. long long PyLong ... OverflowError を送出します。 Returns -1 on error. Use PyErr_Occurred() to disambiguate. long long PyLong ...
https://man.plustar.jp/python/c-api/long.html - [similar]
19.1.3. email.generator: MIME 文書の生成 — Python 3.6.5 ドキュメント 9938
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... rses, assuming the same non-transforming policy is used for both. That is, parsing the serialized byte st ... efaults are filled in.) The Generator class can be used to flatten a message into a text (as opposed to b ... alse for all others). mangle_from_ is intended for use when messages are stored in unix mbox format (see ... ng to the policy settings. If policy is specified, use that policy to control message generation. If poli ...
https://man.plustar.jp/python/library/email.generator.html - [similar]
19.1.7. email.contentmanager: MIME 内容の管理 — Python 3.6.5 ドキュメント 9854
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... the content transfer encoding, and it enables the use of the various add_ methods, thereby simplifying t ... f the part is a text part and errors is specified, use it as the error handler when decoding the payload ... t is specified, or plain if it is not. For bytes , use the specified maintype and subtype , or raise a Ty ... s partial , raise an error ( bytes objects must be used to construct message/partial parts). For <'list'> ...
https://man.plustar.jp/python/library/email.contentmanager.html - [similar]
19.1.1. email.message: 電子メールメッセージの表現 — Python 3.6.5 ドキュメント 9080
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... essage ( policy=default ) ¶ If policy is specified use the rules it specifies to update and serialize the ... presentation of the message. If policy is not set, use the default policy, which follows the rules of the ... ine endings (instead of the RFC mandated \r\n , it uses the Python standard \n line endings). For more in ... e_length of the policy. The policy argument may be used to override the default policy obtained from the ...
https://man.plustar.jp/python/library/email.message.html - [similar]
What's New In Python 3.6 — Python 3.6.5 ドキュメント 8996
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho ... annotations PEP written by Ryan Gonzalez, Philip House, Ivan Levkivskyi, Lisa Roach, and Guido van Rossum ... . Implemented by Ivan Levkivskyi. Tools that use or will use the new syntax: mypy , pytype , PyChar ... o now has support for the '_' option to signal the use of an underscore for a thousands separator for flo ... ject which represents a file system path. Code can use os.fspath() , os.fsdecode() , or os.fsencode() to ...
https://man.plustar.jp/python/whatsnew/3.6.html - [similar]
26.6. unittest.mock --- 入門 — Python 3.6.5 ドキュメント 8758
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... o also work with method calls on the mock, you can use auto-speccing . 任意の属性の参照だけでなく代入も禁 ... me.date globally, we patch date in the module that uses it. See where to patch . When date.today() is cal ... ibutes ( call_count and friends) which may also be useful for your tests. An alternative way of dealing w ... ¶ A Python generator is a function or method that uses the yield statement to return a series of values ...
https://man.plustar.jp/python/library/unittest.mock-examples.html - [similar]
29.6. contextlib --- with 文コンテキスト用ユーティリティ — Python 3.6.5 ドキュ... 7662
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... eans that this context manager is not suitable for use in library code and most threaded applications. It ... the output of subprocesses. However, it is still a useful approach for many utility scripts. このコンテキ ... ial_resource , special ) # Perform operations that use the acquired resources 上の例にあるように、 ExitSt ... 、背景、および例が記載されています。 29.6.3. Single use, reusable and reentrant context managers ¶ Most co ...
https://man.plustar.jp/python/library/contextlib.html - [similar]
21.27. xmlrpc.server --- 基本的なXML-RPCサーバー — Python 3.6.5 ドキュメント 7590
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... e=False , encoding=None , bind_and_activate=True , use_builtin_types=False ) ¶ サーバーインスタンスを新た ... e を設定することで、アドレスを束縛する前に allow_reuse_address クラス変数を操作することが出来ます。 use_b ... ます。デフォルトでは偽です。 バージョン 3.3 で変更: use_builtin_types フラグが追加されました。 class xmlrp ... equestHandler ( allow_none=False , encoding=None , use_builtin_types=False ) ¶ CGI 環境における XML-RPC リ ...
https://man.plustar.jp/python/library/xmlrpc.server.html - [similar]
PREV 1 2 3 4 5 6 7 8 9 10 NEXT