Python 3.6.5 ドキュメント 検索
Results of 1 - 10 of about 39 for update (0.029 sec.)
- 15.1. hashlib --- セキュアハッシュおよびメッセージダイジェスト — Python 3.6.5 ... 16273
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ
...
を作るには sha256() を使います。このオブジェクトには update() メソッドを用いて bytes-like オブジェクト (通常 b...
hon GIL が解除されます。 注釈 文字列オブジェクトを update() に渡すのはサポートされていません。ハッシュはバイ...
import hashlib >>> m = hashlib . sha256 () >>> m . update ( b "Nobody inspects" ) >>> m . update ( b " the s...
です: >>> h = hashlib . new ( 'ripemd160' ) >>> h . update ( b "Nobody inspects the spammish repetition" ) >>...
- https://man.plustar.jp/python/library/hashlib.html - [similar]
- 15.2. hmac --- メッセージ認証のための鍵付きハッシュ化 — Python 3.6.5 ドキュメン... 11480
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ
...
bytearray オブジェクトです。 msg が与えられると、 update(msg) が呼び出されます。 digestmod は利用するダイジ...
オブジェクトは以下のメソッドを持っています: HMAC. update ( msg ) ¶ hmac オブジェクトを msg で更新します。こ...
で単一の呼び出しをした際と同じになります。すなわち m.update(a); m.update(b) は m.update(a + b) と等価です。 バ...
らゆる型のいずれかです。 HMAC. digest ( ) ¶ これまで update() メソッドに渡されたバイト列のダイジェスト値を返し...
- https://man.plustar.jp/python/library/hmac.html - [similar]
- 8.3. collections --- コンテナデータ型 — Python 3.6.5 ドキュメント 8692
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ
...
供されています。これはたいてい、新しい辞書を作成して update() を繰り返すよりも早いです。 このクラスはネストされ...
hainMap ): 'Variant of ChainMap that allows direct updates to inner scopes' def __setitem__ ( self , key , v...
'lion' : 'yellow' }) >>> d [ 'lion' ] = 'orange' # update an existing key two levels down >>> d [ 'snake' ]...
ble の要素または mapping の要素が引かれます。 dict.update() に似ていますが、カウントを置き換えるのではなく引...
- https://man.plustar.jp/python/library/collections.html - [similar]
- 10.2. functools --- 高階関数と呼び出し可能オブジェクトの操作 — Python 3.6.5 ド... 8692
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ
...
): newkeywords = keywords . copy () newkeywords . update ( fkeywords ) return func ( * args , * fargs , **...
at 0x103fe0000> バージョン 3.4 で追加. functools. update_wrapper ( wrapper , wrapped , assigned=WRAPPER_ASS...
IGNMENTS , updated=WRAPPER_UPDATES ) ¶ wrapper 関数を wrapped 関数に...
メンテーション文字列 __doc__ に代入する) と WRAPPER_UPDATES (これはラッパー関数の __dict__ すなわちインスタン...
- https://man.plustar.jp/python/library/functools.html - [similar]
- 9. クラス — Python 3.6.5 ドキュメント 8473
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python チュートリア
...
self , iterable ): self . items_list = [] self . __update ( iterable ) def update ( self , iterable ): for i...
n iterable : self . items_list . append ( item ) __update = update # private copy of original update() metho...
d class MappingSubclass ( Mapping ): def update ( self , keys , values ): # provides new signature...
for update() # but does not break __init__() for item in zip...
- https://man.plustar.jp/python/tutorial/classes.html - [similar]
- 辞書オブジェクト (dictionary object) — Python 3.6.5 ドキュメント 8363
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python/C API リファ
...
例外が送出された場合には -1 を返します。 int PyDict_Update ( PyObject *a , PyObject *b ) ¶ C で表せば PyDict_...
Merge(a, b, 1) と同じで、また Python の a.update(b) と似ていますが、 PyDict_Update() は第二引数が "...
- https://man.plustar.jp/python/c-api/dict.html - [similar]
- 24.1. turtle --- タートルグラフィックス — Python 3.6.5 ドキュメント 8034
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ
...
oordinates() アニメーションの制御 delay() tracer() update() スクリーンイベントを利用する listen() onkey() |...
整数 Turn turtle animation on/off and set delay for update drawings. If n is given, only each n-th regular sc...
reen update is really performed. (Can be used to accelerate th...
.. fd ( dist ) ... rt ( 90 ) ... dist += 2 turtle. update ( ) ¶ TurtleScreen の更新を実行します。トレーサーが...
- https://man.plustar.jp/python/library/turtle.html - [similar]
- 12.1. pickle --- Python オブジェクトの直列化 — Python 3.6.5 ドキュメント 7815
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ
...
es ): obj = cls . __new__ ( cls ) obj . __dict__ . update ( attributes ) return obj クラスは、いくつかの特殊...
( "Pickled records:" ) pprint . pprint ( memos ) # Update a record, just for good measure. cursor . execute...
( "UPDATE memos SET task='learn italian' WHERE key=1" ) # Lo...
tes (i.e., filename and lineno). self . __dict__ . update ( state ) # Restore the previously opened file's s...
- https://man.plustar.jp/python/library/pickle.html - [similar]
- 10. API リファレンス — Python 3.6.5 ドキュメント 7690
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python モジュールの
...
_mode=1 , preserve_times=1 , preserve_symlinks=0 , update=0 , verbose=0 , dry_run=0 ] ) ¶ src ディレクトリツ...
はされるはず)のファイルのリストを返します。返り値は update または dry_run に影響されません: src 以下の全ファイ...
) 場合、シンボリックリンクの対象がコピーされます。 update と verbose は copy_file() のものと同じです。 src に...
src , dst [ , preserve_mode=1 , preserve_times=1 , update=0 , link=None , verbose=0 , dry_run=0 ] ) ¶ ファイ...
- https://man.plustar.jp/python/distutils/apiref.html - [similar]
- 16.10. curses --- 文字セル表示を扱うための端末操作 — Python 3.6.5 ドキュメント 7690
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ
...
¶ 出力に ms ミリ秒の一時停止を入れます。 curses. doupdate ( ) ¶ 物理スクリーンを更新します。curses ライブラリ...
をそれぞれ表す、2 つのデータ構造を保持しています。 doupdate() は更新を適用し、物理スクリーンを仮想スクリーンに...
一致させます。 The virtual screen may be updated by a noutrefresh() call after write operations su...
fresh() call is simply noutrefresh() followed by doupdate() ; if you have to update multiple windows, you ca...
- https://man.plustar.jp/python/library/curses.html - [similar]