Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 1 - 10 of about 33 for structure (0.050 sec.)
19.1.15. email.iterators: イテレータ — Python 3.6.5 ドキュメント 11695
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... インターフェイスでは ありません 。 email.iterators. _structure ( msg , fp=None , level=0 , include_default=False ... ntation of the content types of the message object structure. For example: >>> msg = email . message_from_file ... ( somefile ) >>> _structure ( msg ) multipart/mixed text/plain text/plain mult ... ド: email , plain , パート , iterators , maintype , structure , subtype , パッケージ , 形式 , 省略 前のトピックへ ...
https://man.plustar.jp/python/library/email.iterators.html - [similar]
16.16. ctypes --- Pythonのための外部関数ライブラリ — Python 3.6.5 ドキュメント 11502
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... 構造体と共用体は ctypes モジュールに定義されている Structure および Union ベースクラスからの派生クラスでなければ ... ています: >>> from ctypes import * >>> class POINT ( Structure ): ... _fields_ = [( "x" , c_int ), ... ( "y" , c_ ... の POINT を持つ RECT 構造体です。: >>> class RECT ( Structure ): ... _fields_ = [( "upperleft" , POINT ), ... ( ... ライメントとバイトオーダー ¶ デフォルトでは、構造体 (Structure) と共用体(Union) のフィールドは C コンパイラが行う ...
https://man.plustar.jp/python/library/ctypes.html - [similar]
Argument Clinic How-To — Python 3.6.5 ドキュメント 11310
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python HOWTO » Argu ... macro defining the appropriate static PyMethodDef structure for this builtin: #define __PICKLE_PICKLER_DUMP_ME ... METH_O, __pickle_Pickler_dump__doc__}, This static structure should be exactly the same as the existing static ... PyMethodDef structure for this builtin. If any of these items differ in ... NULL ; ... Remember the macro with the PyMethodDef structure for this function? Find the existing PyMethodDef s ...
https://man.plustar.jp/python/howto/clinic.html - [similar]
19.1. email --- 電子メールと MIME 処理のためのパッケージ — Python 3.6.5 ドキュ... 10732
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... などのMIME関連のRFCに対応しています。 The overall structure of the email package can be divided into three maj ... ME subcomponents, the email object model is a tree structure of objects that all provide the EmailMessage API. ... ion should be able to treat the email message as a structured tree of unicode text and binary attachments, with ... ome of the rules governing MIME messages and their structure, specifically the names and nature of the MIME "co ...
https://man.plustar.jp/python/library/email.html - [similar]
19.1.2. email.parser: 電子メールメッセージのパース — Python 3.6.5 ドキュメント 10524
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ¶ ソースコード: Lib/email/parser.py Message object structures can be created in one of two ways: they can be cr ... andard parser that understands most email document structures, including MIME documents. You can pass the parse ... o you the root EmailMessage instance of the object structure. For simple, non-MIME messages the payload of this ... policy=policy.compat32 ) ¶ Return a message object structure from a bytes-like object . This is equivalent to B ...
https://man.plustar.jp/python/library/email.parser.html - [similar]
オブジェクト実装サポート (object implementation support) — Python 3.6.5 ドキュ... 10139
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python/C API リファ ... モリ確保する 共通のオブジェクト構造体 (common object structure) 型オブジェクト 数値オブジェクト構造体 マップオブジ ... クト構造体 バッファオブジェクト構造体 (buffer object structure) async オブジェクト構造体 循環参照ガベージコレクシ ...
https://man.plustar.jp/python/c-api/objimpl.html - [similar]
19.1.3. email.generator: MIME 文書の生成 — Python 3.6.5 ドキュメント 9946
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... the email message represented by a message object structure. You will need to do this if you want to send your ... he message on the console. Taking a message object structure and producing a serialized representation is the j ... t the textual representation of the message object structure rooted at msg to the output file specified when th ... t the textual representation of the message object structure rooted at msg to the output file specified when th ...
https://man.plustar.jp/python/library/email.generator.html - [similar]
Python/C API リファレンスマニュアル — Python 3.6.5 ドキュメント 8791
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python/C API リファ ... モリ確保する 共通のオブジェクト構造体 (common object structure) 型オブジェクト 数値オブジェクト構造体 マップオブジ ... クト構造体 バッファオブジェクト構造体 (buffer object structure) async オブジェクト構造体 循環参照ガベージコレクシ ...
https://man.plustar.jp/python/c-api/index.html - [similar]
共通のオブジェクト構造体 (common object structure) — Python 3.6.5 ドキュメント 8599
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python/C API リファ ... support) » 共通のオブジェクト構造体 (common object structure) ¶ Python では、オブジェクト型を定義する上で数多く ... 削除できます ( NULL が代入されます)。 PyGetSetDef ¶ Structure to define property-like access for a type. See als ...
https://man.plustar.jp/python/c-api/structures.html - [similar]
19.1.9. email.message.Message: Representing an email message using the compat32 ... 8214
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... u are dealing with legacy code. The philosophy and structure of the two classes is otherwise the same. This doc ... be a simple text message, or a binary object, or a structured sequence of sub-messages each with their own set ... the MIME type of every part of a multipart message structure: >>> for part in msg . walk (): ... print ( part . ... can see this in our example by making use of the _structure debug helper function: >>> for part in msg . walk ...
https://man.plustar.jp/python/library/email.compat32-message.html - [similar]
PREV 1 2 3 4 NEXT