Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 51 - 60 of about 211 for OBJECT (0.083 sec.)
18.5.3. タスクとコルーチン — Python 3.6.5 ドキュメント 5551
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... e does not start its code running -- the coroutine object returned by the call doesn't do anything until you ... n_until_complete() method when it gets a coroutine object instead of a task. The diagram shows the control f ... back is called with a single argument - the future object. If the future is already done when this is called ... す。 A task is responsible for executing a coroutine object in an event loop. If the wrapped coroutine yields ...
https://man.plustar.jp/python/library/asyncio-task.html - [similar]
正規表現 HOWTO — Python 3.6.5 ドキュメント 5509
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python HOWTO » 正規 ... match can be found. If they're successful, a match object instance is returned, containing information about ... tempo . In this case, match() will return a match object , so you should store the result in a variable for ... >> m = p . match ( 'tempo' ) >>> m <_sre.SRE_Match object; span=(0, 5), match='tempo'> Now you can query the ... match object for information about the matching string. Match o ...
https://man.plustar.jp/python/howto/regex.html - [similar]
オブジェクトをヒープ上にメモリ確保する — Python 3.6.5 ドキュメント 5467
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python/C API リファ ... レンスマニュアル » オブジェクト実装サポート (object implementation support) » オブジェクトをヒープ上に ... メモリ確保する ¶ PyObject * _PyObject_New ( PyTypeObject *type ) ¶ Return va ... lue: New reference. PyVarObject * _PyObject_NewVar ( PyTypeObject *type , Py_ssize ... _t size ) ¶ Return value: New reference. PyObject * PyObject_Init ( PyObject *op , PyTypeObject *typ ...
https://man.plustar.jp/python/c-api/allocation.html - [similar]
弱参照オブジェクト — Python 3.6.5 ドキュメント 5467
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python/C API リファ ... レンスマニュアル » 具象オブジェクト (concrete object) レイヤ » 弱参照オブジェクト ¶ Python は 弱参照 を ... 第一級オブジェクト (first-class object) としてサポートします。弱参照を直接実装する二種類の ... ob がプロキシオブジェクトの場合に真を返します。 PyObject * PyWeakref_NewRef ( PyObject *ob , PyObject *call ... い場合は、 NULL を返して TypeError を送出します。 PyObject * PyWeakref_NewProxy ( PyObject *ob , PyObject *ca ...
https://man.plustar.jp/python/c-api/weakref.html - [similar]
19.1.7. email.contentmanager: MIME 内容の管理 — Python 3.6.5 ドキュメント 5467
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... er will extract the payload from msg and return an object that encodes information about the extracted data. ... ) ¶ Record handler as the function to call when an object of a type matching typekey is passed to set_conten ... eals only with text, raw byte strings, and Message objects. Nevertheless, it provides significant advantages ... either a string (for text parts), an EmailMessage object (for message/rfc822 parts), or a bytes object (for ...
https://man.plustar.jp/python/library/email.contentmanager.html - [similar]
12.1. pickle --- Python オブジェクトの直列化 — Python 3.6.5 ドキュメント 5467
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... on との比較 ¶ pickle プロトコルと JSON (JavaScript Object Notation) との基本的な違いは以下のとおりです: JSON ... ng に 'bytes' を指定します。 pickle. loads ( bytes_object , * , fix_imports=True , encoding="ASCII" , errors ... って、デフォルトの振る舞いを変更することができます: object. __getnewargs_ex__ ( ) ¶ In protocols 2 and newer, ... dictionary of named arguments for constructing the object. Those will be passed to the __new__() method upon ...
https://man.plustar.jp/python/library/pickle.html - [similar]
例外処理 — Python 3.6.5 ドキュメント 5424
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python/C API リファ ... のエイリアスです。 void PyErr_WriteUnraisable ( PyObject *obj ) ¶ 例外が設定されているがインタプリタが実際に ... NULL ポインタを返します。 void PyErr_SetString ( PyObject *type , const char *message ) ¶ これはエラーインジ ... ジで、 'utf-8' からデコードされます。 void PyErr_SetObject ( PyObject *type , PyObject *value ) ¶ この関数は ... 任意のPythonオブジェクトを指定することができます。 PyObject * PyErr_Format ( PyObject *exception , const char ...
https://man.plustar.jp/python/c-api/exceptions.html - [similar]
8.1. datetime --- 基本的な日付型および時間型 — Python 3.6.5 ドキュメント 5424
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... まりません。 サブクラスの関係は以下のようになります: object timedelta tzinfo timezone time date datetime 8.1.2 ... it possible to specify a format string for a date object in formatted string literals and when using str.fo ... ime , tzinfo=self.tzinfo ) ¶ Return a new datetime object whose date components are equal to the given date ... whose time components are equal to the given time object's. If the tzinfo argument is provided, its value i ...
https://man.plustar.jp/python/library/datetime.html - [similar]
コードオブジェクト — Python 3.6.5 ドキュメント 5382
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python/C API リファ ... レンスマニュアル » 具象オブジェクト (concrete object) レイヤ » コードオブジェクト ¶ コードオブジェクト( ... Code objects)は CPython 実装の低レベルな詳細部分です。各オブジ ... れていない実行可能コードの塊を表現しています。 PyCodeObject ¶ コードオブジェクトを表現するために利用されるC構造 ... 。この型のフィールドは何時でも変更され得ます。 PyTypeObject PyCode_Type ¶ これは Python の code 型を表現する P ...
https://man.plustar.jp/python/c-api/code.html - [similar]
オブジェクトプロトコル (object protocol) — Python 3.6.5 ドキュメント 5382
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python/C API リファ ... レンスマニュアル » 抽象オブジェクトレイヤ (abstract objects layer) » オブジェクトプロトコル (object protocol) ... ¶ PyObject * Py_NotImplemented ¶ 与えられたオブジェクトとメソ ... グルトンの参照カウントを増やし、返却します) 。 int PyObject_Print ( PyObject *o , FILE *fp , int flags ) ¶ オブ ... に str() を使ってオブジェクトを書き込みます。 int PyObject_HasAttr ( PyObject *o , PyObject *attr_name ) ¶ o ...
https://man.plustar.jp/python/c-api/object.html - [similar]
PREV 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 NEXT