Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 1 - 10 of about 234 for IF (0.024 sec.)
19.1.7. email.contentmanager: MIME 内容の管理 — Python 3.6.5 ドキュメント 9697
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... aintype/subtype ) maintype を表す文字列 空の文字列 If none of these keys produce a handler, raise a KeyE ... E type. set_content ( msg , obj , *args , **kw ) ¶ If the maintype is multipart , raise a TypeError ; ot ... e ( typ.__qualname__ ) 型の name ( typ.__name__ ). If none of the above match, repeat all of the checks ... of the types in the MRO ( typ.__mro__ ). Finally, if no other key yields a handler, check for a handler ...
https://man.plustar.jp/python/library/email.contentmanager.html - [similar]
19.1.1. email.message: 電子メールメッセージの表現 — Python 3.6.5 ドキュメント 9533
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... r accessing message bodies, and for creating or modifying structured messages. An email message consists ... s email.message. EmailMessage ( policy=default ) ¶ If policy is specified use the rules it specifies to ... e and serialize the representation of the message. If policy is not set, use the default policy, which f ... e formatting produced by the method, since the specified policy will be passed to the Generator . Flatte ...
https://man.plustar.jp/python/library/email.message.html - [similar]
2. 拡張の型の定義: チュートリアル — Python 3.6.5 ドキュメント 9451
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python インタプリタ ... thon.h> typedef struct { PyObject_HEAD /* Type-specific fields go here. */ } CustomObject ; static PyTyp ... DINIT_FUNC PyInit_custom ( void ) { PyObject * m ; if ( PyType_Ready ( & CustomType ) < 0 ) return NULL ... ; m = PyModule_Create ( & custommodule ); if ( m == NULL ) return NULL ; Py_INCREF ( & CustomTy ... nit_custom() の一部のコードはそうではないでしょう: if ( PyType_Ready ( & CustomType ) < 0 ) return ; これ ...
https://man.plustar.jp/python/extending/newtypes_tutorial.html - [similar]
19.1.3. email.generator: MIME 文書の生成 — Python 3.6.5 ドキュメント 9380
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... message object structure. You will need to do this if you want to send your message via smtplib.SMTP.sen ... t support a write method that accepts binary data. If optional mangle_from_ is True , put a > character ... ailbox and WHY THE CONTENT-LENGTH FORMAT IS BAD ). If maxheaderlen is not None , refold any header lines ... that are longer than maxheaderlen , or if 0 , do not rewrap any headers. If manheaderlen is ...
https://man.plustar.jp/python/library/email.generator.html - [similar]
Argument Clinic How-To — Python 3.6.5 ドキュメント 9298
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python HOWTO » Argu ... compatibility for future versions. In other words: if you maintain an external C extension for CPython, ... linic will preserve indents inside the docstring.) If the old docstring had a first line that looked lik ... to the open file. [clinic start generated code]*/ If your docstring doesn't have a "summary" line, Argu ... e name of the module, include any sub-modules, and if the function is a method on a class it should incl ...
https://man.plustar.jp/python/howto/clinic.html - [similar]
10.1. itertools --- 効率的なループ実行のためのイテレータ生成関数 — Python 3.6.5... 7997
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ) --> A B C D E F compress() data, selectors (d[0] if s[0]), (d[1] if s[1]), ... compress('ABCDEF', [1,0 ... 023 123 pool = tuple ( iterable ) n = len ( pool ) if r > n : return indices = list ( range ( r )) yield ... s ) while True : for i in reversed ( range ( r )): if indices [ i ] != i + n - r : break else : return i ... ) for indices in permutations ( range ( n ), r ): if sorted ( indices ) == list ( indices ): yield tupl ...
https://man.plustar.jp/python/library/itertools.html - [similar]
16.10. curses --- 文字セル表示を扱うための端末操作 — Python 3.6.5 ドキュメント 7874
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... e documentation mentions a character it can be specified as an integer, a one-character Unicode string o ... entation mentions a character string it can be specified as a Unicode string or a byte string. 注釈 vers ... 1 , or 2 , for invisible, normal, or very visible. If the terminal supports the visibility requested, re ... l is simply noutrefresh() followed by doupdate() ; if you have to update multiple windows, you can speed ...
https://man.plustar.jp/python/library/curses.html - [similar]
Python 3 への拡張モジュール移植 — Python 3.6.5 ドキュメント 7721
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python HOWTO » Pyth ... R_VERSION が 3 以上かどうかチェックすることです。 #if PY_MAJOR_VERSION >= 3 #define IS_PY3K #endif 存在し ... , PyObject * args ) { PyObject * name , * result ; if ( ! PyArg_ParseTuple ( args , "U:say_hello" , & na ... ) { char * encoded ; PyObject * result , * myobj ; if ( ! PyArg_ParseTuple ( args , "O:encode_object" , ... bj )) return NULL ; encoded = do_encode ( myobj ); if ( encoded == NULL ) return NULL ; result = PyBytes ...
https://man.plustar.jp/python/howto/cporting.html - [similar]
19.1.4. email.policy: ポリシーオブジェクト — Python 3.6.5 ドキュメント 7680
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ilMessage object is created, it acquires a policy. If the message is created by a parser , a policy pass ... will be the policy used by the message it creates. If the message is created by the program, then the po ... licy can be specified when it is created. When a message is passed to ... he message by default, but you can also pass a specific policy to the generator that will override the o ...
https://man.plustar.jp/python/library/email.policy.html - [similar]
21.12. http.client --- HTTP プロトコルクライアント — Python 3.6.5 ドキュメント 7557
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... 振る舞いに戻したければ、 context に ssl._create_unverified_context() を渡すことで出来ます。 バージョン 3.6 ... fault_context() select the system's trusted CA certificates for you. The check_hostname parameter is als ... LineTooLong ¶ A subclass of HTTPException . Raised if an excessively long line is received in the HTTP p ... よびセレクタ url を使って、要求をサーバに送ります。 If body is specified, the specified data is sent afte ...
https://man.plustar.jp/python/library/http.client.html - [similar]
PREV 1 2 3 4 5 6 7 8 9 10 NEXT