Python 3.6.5 ドキュメント 検索
Results of 1 - 10 of about 230 for NAME (0.004 sec.)
- 10. 完全な文法仕様 — Python 3.6.5 ドキュメント 9420
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 言語リファレ
...estlist NEWLINE * ENDMARKER decorator : '@' dotted_name [ '(' [ arglist ] ')' ] NEWLINE decorators : decor...ef ) async_funcdef : ASYNC funcdef funcdef : 'def' NAME parameters [ '->' test ] ':' suite parameters : '(...' tfpdef [ ',' ]]] | '**' tfpdef [ ',' ]) tfpdef : NAME [ ':' test ] varargslist : ( vfpdef [ '=' test ] (...vfpdef [ ',' ]]] | '**' vfpdef [ ',' ] ) vfpdef : NAME stmt : simple_stmt | compound_stmt simple_stmt : s... - https://man.plustar.jp/python/reference/grammar.html - [similar]
- 19.1.4. email.policy: ポリシーオブジェクト — Python 3.6.5 ドキュメント 9152
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ
...policy, via its pre-defined instance default . When a Message or EmailMessage object is created, it acqui...the policy can be specified when it is created. When a message is passed to a generator , the generator us...s will raise unexpected errors. header_max_count ( name ) ¶ name というヘッダに許される最大の数を返します。...and there are already a number of headers with the name name greater than or equal to the value returned,... - https://man.plustar.jp/python/library/email.policy.html - [similar]
- 2. 拡張の型の定義: チュートリアル — Python 3.6.5 ドキュメント 8967
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python インタプリタ
...omType = { PyVarObject_HEAD_INIT ( NULL , 0 ) . tp_name = "custom.Custom" , . tp_doc = "Custom objects" ,...leDef custommodule = { PyModuleDef_HEAD_INIT , . m_name = "custom" , . m_doc = "Example module that create...omType = { PyVarObject_HEAD_INIT ( NULL , 0 ) . tp_name = "custom.Custom" , . tp_doc = "Custom objects" ,...ィールドの初期化に必須のボイラープレートです。 . tp_name = "custom.Custom" , 実装している型の名前です。 これ... - https://man.plustar.jp/python/extending/newtypes_tutorial.html - [similar]
- 19.1.6. email.headerregistry: カスタムヘッダーオブジェクト — Python 3.6.5 ドキ... 8926
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ
...zed second class for a header is determined by the name of the header, using a lookup table stored in the...headers. class email.headerregistry. BaseHeader ( name , value ) ¶ name and value are passed to BaseHeade...基底クラスは以下の読み出し専用属性を定義しています: name ¶ The name of the header (the portion of the field...ly the value passed in the header_factory call for name ; that is, case is preserved. defects ¶ A tuple of... - https://man.plustar.jp/python/library/email.headerregistry.html - [similar]
- カプセル — Python 3.6.5 ドキュメント 8627
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python/C API リファ
...ject * PyCapsule_New ( void *pointer , const char *name , PyCapsule_Destructor destructor ) ¶ Return value...ん。 失敗した場合、例外を設定して NULL を返します。 name 文字列は NULL か、有効なC文字列へのポインタです。...このカプセルがモジュールの属性として保存される場合、 name は modulename.attributename と指定されるべきです。...psule_GetPointer ( PyObject *capsule , const char *name ) ¶ カプセルに保存されている pointer を取り出します... - https://man.plustar.jp/python/c-api/capsule.html - [similar]
- 31.4. runpy --- Python モジュールの位置特定と実行 — Python 3.6.5 ドキュメント 8360
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ
...2つの関数を提供しています: runpy. run_module ( mod_name , init_globals=None , run_name=None , alter_sys=Fa...まっさらなモジュール名前空間で実行されます。 The mod_name argument should be an absolute module name. If the...module name refers to a package rather than a normal module, t...ってオーバーライドされます。 特別なグローバル変数 __name__ , __spec__ , __file__ , __cached__ , __loader__... - https://man.plustar.jp/python/library/runpy.html - [similar]
- モジュールのインポート — Python 3.6.5 ドキュメント 8133
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python/C API リファ
...ト ¶ PyObject * PyImport_ImportModule ( const char *name ) ¶ Return value: New reference. この関数は下で述べ...引数を NULL のままにし、 level を 0 にしたものです。 name 引数にドットが含まれる場合 (あるパッケージのサブモ...むトップレベルパッケージではなく名前つきモジュール (named module) になるようにします。 (残念ながらこのやり方...には、 name が実際にはサブモジュールでなくサブパッケージを指定... - https://man.plustar.jp/python/c-api/import.html - [similar]
- Argument Clinic How-To — Python 3.6.5 ドキュメント 8133
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python HOWTO » Argu
...nge for this step.) Above the docstring, enter the name of the function, followed by a blank line. This sh...ould be the Python name of the function, and should be the full dotted pat...h to the function—it should start with the name of the module, include any sub-modules, and if the...is a method on a class it should include the class name too. 例: /*[clinic input] _pickle.Pickler.dump Wri... - https://man.plustar.jp/python/howto/clinic.html - [similar]
- 20.5. xml.etree.ElementTree --- ElementTree XML API — Python 3.6.5 ドキュメント 8030
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ
...書を使います: <?xml version="1.0"?> <data> <country name= "Liechtenstein" > <rank> 1 </rank> <year> 2008 </...year> <gdppc> 141100 </gdppc> <neighbor name= "Austria" direction= "E" /> <neighbor name= "Swit...zerland" direction= "W" /> </country> <country name= "Singapore" > <rank> 4 </rank> <year> 2011 </year...> <gdppc> 59900 </gdppc> <neighbor name= "Malaysia" direction= "N" /> </country> <country... - https://man.plustar.jp/python/library/xml.etree.elementtree.html - [similar]
- Python 3 への拡張モジュール移植 — Python 3.6.5 ドキュメント 7989
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python HOWTO » Pyth
...( PyObject * self , PyObject * args ) { PyObject * name , * result ; if ( ! PyArg_ParseTuple ( args , "U:s...ay_hello" , & name )) return NULL ; result = PyUnicode_FromFormat ( "...Hello, %S!" , name ); return result ; } /* just a forward */ static c...シミュレートします。 しかし CObject には capsule の "name" を保持する余地がありません。 よって、 capsulethun... - https://man.plustar.jp/python/howto/cporting.html - [similar]
