Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 41 - 50 of about 171 for new (0.050 sec.)
19.1.4. email.policy: ポリシーオブジェクト — Python 3.6.5 ドキュメント 5866
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... arguments as the class constructor and returning a new Policy instance that is a copy of the original but ... ge_factory ¶ A factory function for constructing a new empty message object. Used by the parser when buil ... es with custom settings: clone ( **kw ) ¶ Return a new Policy instance whose attributes have the same val ... instance, except where those attributes are given new values by the keyword arguments. The remaining Pol ...
https://man.plustar.jp/python/library/email.policy.html - [similar]
15.1. hashlib --- セキュアハッシュおよびメッセージダイジェスト — Python 3.6.5 ... 5866
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... c03f52dc550cd6e1e87021bc896588bd79e901e2' hashlib. new ( name [ , data ] ) ¶ 一般的なコンストラクタで、第 ... スすることができます。名前のあるコンストラクタの方が new() よりもずっと速いので望ましいです。 new() にOpenS ... Lのアルゴリズムを指定する例です: >>> h = hashlib . new ( 'ripemd160' ) >>> h . update ( b "Nobody inspect ... なハッシュアルゴリズム名の set です。これらの名前は new() に渡すことができます。 algorithms_guaranteed は常 ...
https://man.plustar.jp/python/library/hashlib.html - [similar]
What's New in Python 2.0 — Python 3.6.5 ドキュメント 5866
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho ... n » What's New in Python 2.0 ¶ 著者: A.M. Kuchling and Moshe Zadk ... ython/ にあります(訳注: 2015 年現在の状況は What's New in Python 2.6 参照)。 SourceForge で現在ホストされ ... ec API is defined for implementing and registering new encodings that are then available throughout a Pyt ... ジョンとは、結果的には Python 3 になりました。What's New での明記はないのですが -U オプションは Python 2.7 ...
https://man.plustar.jp/python/whatsnew/2.0.html - [similar]
What's New in Python 2.1 — Python 3.6.5 ドキュメント 5866
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho ... n » What's New in Python 2.1 ¶ 著者: A.M. Kuchling はじめに ¶ この ... レンスにはこれに関係する履歴は書かれていない。What's New を 2.7 まで追いかけても以後変更された記録はない。) ... った関数を呼び出すとコアダンプし得ます。例えば PyMem_New() を使って獲得したメモリは free() ではなく PyMem_D ... , motivated by a discussion in comp.lang.python. A new module and method for file objects was also added, ...
https://man.plustar.jp/python/whatsnew/2.1.html - [similar]
What's New In Python 3.4 — Python 3.6.5 ドキュメント 5866
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho ... n » What's New In Python 3.4 ¶ 著者: R. David Murray < rdmurray @ ... oine Pitrou in bpo-17618 .) collections ¶ ChainMap.new_child() メソッドが、チェーンに追加する子マップを指 ... y Jason R. Coombs in bpo-18532 .) hmac ¶ hmac は、 new() の key 引数として bytearray と bytes を許容するよ ... うになり、また、 new() 関数と update() メソッドの両方への msg パラメータ ...
https://man.plustar.jp/python/whatsnew/3.4.html - [similar]
リストオブジェクト — Python 3.6.5 ドキュメント 5821
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python/C API リファ ... スタンスでない場合に真を返します。 PyObject * PyList_New ( Py_ssize_t len ) ¶ Return value: New reference. ... Py_ssize_t low , Py_ssize_t high ) ¶ Return value: New reference. list 内の、 low から high の 間の オブジ ... PyList_AsTuple ( PyObject *list ) ¶ Return value: New reference. list の内容が入った新たなタプルオブジェ ...
https://man.plustar.jp/python/c-api/list.html - [similar]
セルオブジェクト (cell object) — Python 3.6.5 ドキュメント 5765
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python/C API リファ ... b は NULL であってはなりません。 PyObject * PyCell_New ( PyObject *ob ) ¶ Return value: New reference. 値 ... ct * PyCell_Get ( PyObject *cell ) ¶ Return value: New reference. cell の内容を返します。 PyObject * PyCe ...
https://man.plustar.jp/python/c-api/cell.html - [similar]
メモリ管理 — Python 3.6.5 ドキュメント 5765
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python/C API リファ ... です。 TYPE は任意の C の型を表します。 TYPE* PyMem_New ( TYPE, size_t n ) ¶ PyMem_Malloc() と同じですが、 ... いるので注意してください。 PyMem_MALLOC(size) PyMem_NEW(type, size) PyMem_REALLOC(ptr, size) PyMem_RESIZE( ... 当てます void* realloc(void *ctx, void *ptr, size_t new_size) メモリブロックを割り当てるかリサイズします v ... 以下に示します: PyObject * res ; char * buf = PyMem_New ( char , BUFSIZ ); /* for I/O */ if ( buf == NULL ...
https://man.plustar.jp/python/c-api/memory.html - [similar]
16.10. curses --- 文字セル表示を扱うための端末操作 — Python 3.6.5 ドキュメント 5765
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... that color on the screen immediately change to the new definition. This function is a no-op on most termi ... napms ( ms ) ¶ ms ミリ秒間スリープします。 curses. newpad ( nlines , ncols ) ¶ Create and return a pointe ... r to a new pad data structure with the given number of lines ... n which the pad region is to be displayed. curses. newwin ( nlines , ncols ) ¶ curses. newwin ( nlines , ...
https://man.plustar.jp/python/library/curses.html - [similar]
What's New in Python 2.2 — Python 3.6.5 ドキュメント 5765
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho ... n » What's New in Python 2.2 ¶ 著者: A.M. Kuchling はじめに ¶ この ... に動的で、どんなときにもインスタンスに対して単に obj.new_attr=1 とするだけで新しい属性を定義出来ます。新スタ ... e = 'Test' >>> print obj . template Test >>> obj . newattr = None Traceback (most recent call last): File ... in ? AttributeError : 'C' object has no attribute 'newattr' __slots__ リストに含めなかった属性への代入を試 ...
https://man.plustar.jp/python/whatsnew/2.2.html - [similar]
PREV 1 2 3 4 5 6 7 8 9 10 11 12 13 14 NEXT