Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 11 - 20 of about 171 for New (0.047 sec.)
イテレータオブジェクト (iterator object) — Python 3.6.5 ドキュメント 7443
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python/C API リファ ... 終了します。 PyTypeObject PySeqIter_Type ¶ PySeqIter_New() や、組み込みシーケンス型に対して 1 引数形式の組み ... 型が op のときに真を返します。 PyObject * PySeqIter_New ( PyObject *seq ) ¶ Return value: New reference. 一 ... 了します。 PyTypeObject PyCallIter_Type ¶ PyCallIter_New() や、組み込み関数 iter() の 2 引数形式が返すイテレ ... _Type のときに真を返します。 PyObject * PyCallIter_New ( PyObject *callable , PyObject *sentinel ) ¶ Retu ...
https://man.plustar.jp/python/c-api/iterator.html - [similar]
オブジェクトをヒープ上にメモリ確保する — Python 3.6.5 ドキュメント 7387
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python/C API リファ ... トをヒープ上にメモリ確保する ¶ PyObject * _PyObject_New ( PyTypeObject *type ) ¶ Return value: New referen ... ce. PyVarObject * _PyObject_NewVar ( PyTypeObject *type , Py_ssize_t size ) ¶ Retu ... rn value: New reference. PyObject * PyObject_Init ( PyObject *op ... トの場合には長さ情報も初期化します。 TYPE* PyObject_New ( TYPE, PyTypeObject *type ) ¶ Return value: New r ...
https://man.plustar.jp/python/c-api/allocation.html - [similar]
Argument Clinic How-To — Python 3.6.5 ドキュメント 7297
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python HOWTO » Argu ... just the text, based at the left margin, with no line wider than 80 characters. (Argument Clinic will pre ... help() on your builtin in the future, the first line will be built automatically based on the function's ... n-test suite. This change should not introduce any new compile-time warnings or errors, and there should ... legacy code. Please do not use optional groups for new code. Using real Argument Clinic converters, inste ...
https://man.plustar.jp/python/howto/clinic.html - [similar]
オブジェクトプロトコル (object protocol) — Python 3.6.5 ドキュメント 7049
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python/C API リファ ... yObject *o , PyObject *attr_name ) ¶ Return value: New reference. オブジェクト o から、名前 attr_name の属 ... bject *o , const char *attr_name ) ¶ Return value: New reference. オブジェクト o から、名前 attr_name の属 ... ct *o1 , PyObject *o2 , int opid ) ¶ Return value: New reference. o1 と o2 を opid に指定した演算によって ... ct * PyObject_Repr ( PyObject *o ) ¶ Return value: New reference. オブジェクト o の文字列表現を計算します ...
https://man.plustar.jp/python/c-api/object.html - [similar]
What's New in Python 2.5 — Python 3.6.5 ドキュメント 6993
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho ... n » What's New in Python 2.5 ¶ 著者: A.M. Kuchling この文書は Pyt ... 関する PEP を参照してください。可能な限り、 "What's New in Python" は各変更の bug や patch に対してリンクし ... ckage/dist/pkg- %s .tar.gz' % VERSION ), ) Another new enhancement to the Python package index at https:/ ... ring source and binary archives for a package. The new upload Distutils command will upload a package to ...
https://man.plustar.jp/python/whatsnew/2.5.html - [similar]
ジェネレータオブジェクト — Python 3.6.5 ドキュメント 6801
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python/C API リファ ... ジェクトです。ジェネレータオブジェクトは通常、 PyGen_New() や PyGen_NewWithQualName() の明示的な呼び出しでは ... ob が NULL であってはなりません。 PyObject * PyGen_New ( PyFrameObject *frame ) ¶ Return value: New refer ... 引数が NULL であってはなりません。 PyObject * PyGen_NewWithQualName ( PyFrameObject *frame , PyObject *nam ... e , PyObject *qualname ) ¶ Return value: New reference. frame オブジェクトから新たなジェネレータ ...
https://man.plustar.jp/python/c-api/gen.html - [similar]
21.28. ipaddress --- IPv4/IPv6 操作ライブラリ — Python 3.6.5 ドキュメント 6756
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... work('192.0.2.0/32')] subnets ( prefixlen_diff=1 , new_prefix=None ) ¶ The subnets that join to make the ... e amount our prefix length should be increased by. new_prefix is the desired new prefix of the subnets; i ... our prefix. One and only one of prefixlen_diff and new_prefix must be set. Returns an iterator of network ... > list ( ip_network ( '192.0.2.0/24' ) . subnets ( new_prefix = 26 )) #doctest: +NORMALIZE_WHITESPACE [IP ...
https://man.plustar.jp/python/library/ipaddress.html - [similar]
辞書オブジェクト (dictionary object) — Python 3.6.5 ドキュメント 6508
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python/C API リファ ... スタンスでない場合に真を返します。 PyObject * PyDict_New ( ) ¶ Return value: New reference. 空の新たな辞書を ... 失敗すると NULL を返します。 PyObject * PyDictProxy_New ( PyObject *mapping ) ¶ Return value: New referenc ... ject * PyDict_Copy ( PyObject *p ) ¶ Return value: New reference. p と同じキーと値のペアが入った新たな辞書 ... ect * PyDict_Items ( PyObject *p ) ¶ Return value: New reference. 辞書内の全ての要素対が入った PyListObje ...
https://man.plustar.jp/python/c-api/dict.html - [similar]
8.13. enum --- 列挙型のサポート — Python 3.6.5 ドキュメント 6508
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... デスクリプタ (記述子) は例外です。 注意: 列挙型で __new__() および/または __init__() を定義した場合、列挙型 ... 完全な構文は以下のようになります: Enum ( value = 'NewEnumName' , names =<...> , * , module = '...' , qua ... 説文字列を使用する 値としてタプルを使用し、独自の __new__() を使用してタプルを int 値で置き換える これらの ... > Color . GREEN . value 'go' 8.13.14.1.4. 独自の __new__() を使う ¶ 自動で番号を振る __new__() を使うと次 ...
https://man.plustar.jp/python/library/enum.html - [similar]
26.5. unittest.mock --- モックオブジェクトライブラリ — Python 3.6.5 ドキュメン... 6508
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... l = foo . copy () >>> with patch . dict ( foo , { 'newkey' : 'newvalue' }, clear = True ): ... assert foo ... == { 'newkey' : 'newvalue' } ... >>> assert foo == original ... patch() は MagicMock を作成します。 patch() に渡す new_callable 引数によって、別の Mock クラスを指定できま ... ... pass ... >>> with patch ( '__main__.Foo.foo' , new_callable = PropertyMock ) as mock_foo : ... mock_f ...
https://man.plustar.jp/python/library/unittest.mock.html - [similar]
PREV 1 2 3 4 5 6 7 8 9 10 11 NEXT