Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 91 - 100 of about 171 for new (0.152 sec.)
19.1.3. email.generator: MIME 文書の生成 — Python 3.6.5 ドキュメント 5180
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... with the exact same option settings, and fp as the new outfp . write ( s ) ¶ Encode s using the ASCII cod ... nstance with the exact same options, and fp as the new outfp . write ( s ) ¶ Write s to the write method ...
https://man.plustar.jp/python/library/email.generator.html - [similar]
抽象オブジェクトレイヤ (abstract objects layer) — Python 3.6.5 ドキュメント 5134
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python/C API リファ ... が送出されることになります。 これらの関数は、 PyList_New() で作成された後に NULL 以外の値を設定されていない ...
https://man.plustar.jp/python/c-api/abstract.html - [similar]
Boolean オブジェクト — Python 3.6.5 ドキュメント 5134
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python/C API リファ ... bject * PyBool_FromLong ( long v ) ¶ Return value: New reference. v の値に応じて Py_True または Py_False ...
https://man.plustar.jp/python/c-api/bool.html - [similar]
イテレータプロトコル (iterator protocol) — Python 3.6.5 ドキュメント 5134
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python/C API リファ ... ject * PyIter_Next ( PyObject *o ) ¶ Return value: New reference. 反復処理 o における次の値を返します。オ ...
https://man.plustar.jp/python/c-api/iter.html - [similar]
1. C や C++ による Python の拡張 — Python 3.6.5 ドキュメント 5134
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python インタプリタ ... ; if ( m == NULL ) return NULL ; SpamError = PyErr_NewException ( "spam.error" , NULL , NULL ); Py_INCREF ... 前は spam.error になることに注意してください。 PyErr_NewException() 関数は、 組み込み例外 で述べられている ... ULL ; } Py_XINCREF ( temp ); /* Add a reference to new callback */ Py_XDECREF ( my_callback ); /* Dispose ... vious callback */ my_callback = temp ; /* Remember new callback */ /* Boilerplate to return "None" */ Py_ ...
https://man.plustar.jp/python/extending/extending.html - [similar]
Python 3 への拡張モジュール移植 — Python 3.6.5 ドキュメント 5134
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python HOWTO » Pyth ... te * st = GETSTATE ( module ); st -> error = PyErr_NewException ( "myextension.Error" , NULL , NULL ); if ... Capsule とは少し異なります。 具体的には: PyCapsule_New() に渡された name 引数は無視されます。 PyCapsule_I ... name) (PyCObject_Check(capsule)) #define PyCapsule_New(pointer, name, destructor) \ (PyCObject_FromVoidPt ...
https://man.plustar.jp/python/howto/cporting.html - [similar]
16.4. argparse --- コマンドラインオプション、引数、サブコマンドのパーサー — Pyt... 5134
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... including argument descriptions. However, multiple new lines are replaced with one. If you wish to preser ... ve multiple blank lines, add spaces between the newlines. ArgumentDefaultsHelpFormatter は各引数のデフ ... p' ) >>> parser . add_argument ( '--foo' , help = 'new foo help' ) Traceback (most recent call last): .. ... p' ) >>> parser . add_argument ( '--foo' , help = 'new foo help' ) >>> parser . print_help () usage: PROG ...
https://man.plustar.jp/python/library/argparse.html - [similar]
19.1.14. email.utils: 多方面のユーティリティ — Python 3.6.5 ドキュメント 5134
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... e for isdst causes the localtime to attempt to divine whether summer time is in effect for the specified ... I. There is no need to directly use these with the new API, since the parsing and formatting they provide ... tomatically by the header parsing machinery of the new API. email.utils. quote ( str ) ¶ 文字列 str 内のバ ... c timezone offset is used. If it is an aware timezone with offset zero, then usegmt may be set to True , ...
https://man.plustar.jp/python/library/email.util.html - [similar]
29.1. sys --- システムパラメータと関数 — Python 3.6.5 ドキュメント 5134
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... きすぎればクラッシュするので注意が必要です。 If the new limit is too low at the current recursion depth, a ... 更: A RecursionError exception is now raised if the new limit is too low at the current recursion depth. s ... None , to reset the wrapper. If called twice, the new wrapper replaces the previous one. The function is ... hread-specific. The wrapper callable cannot define new coroutines directly or indirectly: def wrapper ( c ...
https://man.plustar.jp/python/library/sys.html - [similar]
9. クラス — Python 3.6.5 ドキュメント 5134
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python チュートリア ... e method object is called with an argument list, a new argument list is constructed from the instance obj ... list, and the function object is called with this new argument list. 9.3.5. クラスとインスタンス変数 ¶ 一 ... self . name = name self . tricks = [] # creates a new empty list for each dog def add_trick ( self , tri ... ): def update ( self , keys , values ): # provides new signature for update() # but does not break __init ...
https://man.plustar.jp/python/tutorial/classes.html - [similar]
PREV 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 NEXT