Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 1 - 10 of about 163 for TYPE (0.019 sec.)
19.1.9. email.message.Message: Representing an email message using the compat32 ... 10721
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... n set of headers and their own payload. The latter type of payload is indicated by the message having a MI ... ME type such as multipart/* or message/rfc822 . The concep ... oes not necessarily mean that "msg.get_content_maintype() == 'multipart'" will return the True . For examp ... _multipart will return True when the Message is of type message/rfc822 .) set_unixfrom ( unixfrom ) ¶ メッ ...
https://man.plustar.jp/python/library/email.compat32-message.html - [similar]
19.1.1. email.message: 電子メールメッセージの表現 — Python 3.6.5 ドキュメント 10687
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... n set of headers and their own payload. The latter type of payload is indicated by the message having a MI ... ME type such as multipart/* or message/rfc822 . The concep ... ion from the headers (for example the MIME content type), for operating on the payload, for generating a s ... oes not necessarily mean that "msg.get_content_maintype() == 'multipart'" will return the True . For examp ...
https://man.plustar.jp/python/library/email.message.html - [similar]
2. 拡張の型の定義: チュートリアル — Python 3.6.5 ドキュメント 10310
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python インタプリタ ... ct* は Python の全てのオブジェクトの "基底型 (base type)" となっています。 PyObject 構造体自身は参照カウン ... erence count ) と、オブジェクトの "型オブジェクト (type object)" へのポインタのみを持ちます。 ここには動作 ... かを決定します。 これらの C 関数は "タイプメソッド (type method)" と呼ばれます。 それなので、新しい拡張の型 ... ほとんどの場面で十分なものなのです。 C API では、 PyType_FromSpec() 関数を使い、ヒープ上に配置された拡張の型 ...
https://man.plustar.jp/python/extending/newtypes_tutorial.html - [similar]
オブジェクトをヒープ上にメモリ確保する — Python 3.6.5 ドキュメント 10219
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python/C API リファ ... プ上にメモリ確保する ¶ PyObject * _PyObject_New ( PyTypeObject *type ) ¶ Return value: New reference. PyVar ... Object * _PyObject_NewVar ( PyTypeObject *type , Py_ssize_t size ) ¶ Return value: Ne ... rence. PyObject * PyObject_Init ( PyObject *op , PyTypeObject *type ) ¶ Return value: Borrowed reference. ... を初期化します。初期化されたオブジェクトを返します。 type からそのオブジェクトが循環参照ガベージ検出の機能を ...
https://man.plustar.jp/python/c-api/allocation.html - [similar]
Argument Clinic How-To — Python 3.6.5 ドキュメント 9682
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python HOWTO » Argu ... on. Check the name defined in the PyModuleDef or PyTypeObject as appropriate. When you declare a class, yo ... u must also specify two aspects of its type in C: the type declaration you'd use for a pointer ... an instance of this class, and a pointer to the PyTypeObject for this class. 例: /*[clinic input] module ... class _pickle.Pickler "PicklerObject *" "&Pickler_Type" [clinic start generated code]*/ /*[clinic input] ...
https://man.plustar.jp/python/howto/clinic.html - [similar]
19.5. mimetypes --- ファイル名を MIME 型へマップする — Python 3.6.5 ドキュメン... 9431
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... リ » 19. インターネット上のデータの操作 » 19.5. mimetypes --- ファイル名を MIME 型へマップする ¶ ソースコー ... ド: Lib/mimetypes.py mimetypes モジュールは、ファイル名あるいは URL ... していれば、これらの関数は、 init() を呼びます。 mimetypes. guess_type ( url , strict=True ) ¶ url で与えられ ... づいて、ファイルの型を推定します。戻り値は、タプル (type, encoding) です、ここで type は、もし型が(拡張子が ...
https://man.plustar.jp/python/library/mimetypes.html - [similar]
26.1. typing --- 型ヒントのサポート — Python 3.6.5 ドキュメント 9134
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... サポートとして Any 、 Union 、 Tuple 、 Callable 、 TypeVar および Generic 型を含みます。完全な仕様は PEP 4 ... ctor : return [ scalar * num for num in vector ] # typechecks; a list of floats qualifies as a Vector. new ... vers : List [ Server ]) -> None : ... # The static type checker will treat the previous type signature as ... : ... 型ヒントとしての None は特別なケースであり、 type(None) によって置き換えられます。 26.1.2. NewType...
https://man.plustar.jp/python/library/typing.html - [similar]
16.4. argparse --- コマンドラインオプション、引数、サブコマンドのパーサー — Pyt... 8083
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... rser . add_argument ( 'integers' , metavar = 'N' , type = int , nargs = '+' , help = 'an integer for the a ... rser . add_argument ( 'integers' , metavar = 'N' , type = int , nargs = '+' , ... help = 'an integer for t ... ) >>> parent_parser . add_argument ( '--parent' , type = int ) >>> foo_parser = argparse . ArgumentParser ... mentDefaultsHelpFormatter ¶ class argparse. MetavarTypeHelpFormatter ¶ RawDescriptionHelpFormatter と RawT ...
https://man.plustar.jp/python/library/argparse.html - [similar]
型オブジェクト — Python 3.6.5 ドキュメント 7832
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python/C API リファ ... ェクト (concrete object) レイヤ » 型オブジェクト ¶ PyTypeObject ¶ 組み込み型を記述する際に用いられる、オブジ ... ェクトを表す C 構造体です。 PyObject * PyType_Type ¶ 型オブジェクト自身の型オブジェクトです; Pyt ... hon レイヤにおける type と同じオブジェクトです。 int PyType_Check ( PyObje ... ンスも含みます。その他の場合には偽を返します。 int PyType_CheckExact ( PyObject *o ) ¶ オブジェクト o が型オ ...
https://man.plustar.jp/python/c-api/type.html - [similar]
共通のオブジェクト構造体 (common object structure) — Python 3.6.5 ドキュメント 7547
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python/C API リファ ... す。 メンバにアクセスするには Py_REFCNT マクロと Py_TYPE マクロを使わなければなりません。 PyVarObject ¶ PyO ... ん。 メンバにアクセスするには Py_REFCNT マクロ、 Py_TYPE マクロ、 Py_SIZE マクロを使わなければなりません。 ... PyVarObject のドキュメントを参照してください。 Py_TYPE ( o ) ¶ Python オブジェクトの ob_type メンバにアク ... 次のように展開されます: ((( PyObject * )( o )) -> ob_type ) Py_REFCNT ( o ) ¶ Python オブジェクトの ob_refcn ...
https://man.plustar.jp/python/c-api/structures.html - [similar]
PREV 1 2 3 4 5 6 7 8 9 10 NEXT