Python 3.6.5 ドキュメント 検索
Results of 1 - 10 of about 59 for remove (0.019 sec.)
- 19.4. mailbox --- 様々な形式のメールボックス操作 — Python 3.6.5 ドキュメント 13072
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ
...
add() を使います。また削除は del 文または集合風の remove() や discard() を使って行ないます。 Mailbox インタ...
2 で変更: バイナリ入力のサポートが追加されました。 remove ( key ) ¶ __delitem__ ( key ) ¶ discard ( key ) ¶...
除します。 対応するメッセージが無い場合、メソッドが remove() または __delitem__() として呼び出されている時は...
作り、それを表わす Maildir インスタンスを返します。 remove_folder ( folder ) ¶ 名前が folder であるフォルダを...
- https://man.plustar.jp/python/library/mailbox.html - [similar]
- 6.7. readline --- GNU readline のインタフェース — Python 3.6.5 ドキュメント 12401
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ
...
イブラリーの history_get() が呼ばれます。 readline. remove_history_item ( pos ) ¶ 履歴から指定された位置の項目...
字は0から始まります。これにより下層のライブラリーの remove_history() が呼ばれます。 readline. replace_history...
adline. set_startup_hook ( [ function ] ) ¶ Set or remove the function invoked by the rl_startup_hook callba...
mitted or None , any function already installed is removed. The hook is called with no arguments just before...
- https://man.plustar.jp/python/library/readline.html - [similar]
- マップ型プロトコル (mapping protocol) — Python 3.6.5 ドキュメント 10723
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python/C API リファ
...
_DelItemString ( PyObject *o , const char *key ) ¶ Remove the mapping for object key from the object o . Ret...
yMapping_DelItem ( PyObject *o , PyObject *key ) ¶ Remove the mapping for object key from the object o . Ret...
- https://man.plustar.jp/python/c-api/mapping.html - [similar]
- 8.8. weakref --- 弱参照 — Python 3.6.5 ドキュメント 9716
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ
...
のガベージコレクションが行われた場合 オブジェクトの remove() メソッドが呼び出された場合 プログラムが終了した場...
( self ): self . name = tempfile . mkdtemp () def remove ( self ): if self . name is not None : shutil . rm...
e ( self . name ) self . name = None @property def removed ( self ): return self . name is None def __del__...
( self ): self . remove () Starting with Python 3.4, __del__() methods no...
- https://man.plustar.jp/python/library/weakref.html - [similar]
- 29.6. contextlib --- with 文コンテキスト用ユーティリティ — Python 3.6.5 ドキュ... 9380
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ
...
suppress with suppress ( FileNotFoundError ): os . remove ( 'somefile.tmp' ) with suppress ( FileNotFoundErr...
or ): os . remove ( 'someotherfile.tmp' ) これは以下と等価です: try...
: os . remove ( 'somefile.tmp' ) except FileNotFoundError : pass...
try : os . remove ( 'someotherfile.tmp' ) except FileNotFoundError :...
- https://man.plustar.jp/python/library/contextlib.html - [similar]
- 8.3. collections --- コンテナデータ型 — Python 3.6.5 ドキュメント 9045
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ
...
ded to the topmost dict >>> del d [ 'elephant' ] # remove an existing key one level down DeepChainMap ({ 'ze...
zero count >>> del c [ 'sausage' ] # del actually removes the entry バージョン 3.1 で追加. カウンタオブジェ...
[: - n - 1 : - 1 ] # n least common elements + c # remove zero and negative counts Counter オブジェクトを組み...
ひとつも存在しない場合は IndexError を発生させます。 remove ( value ) ¶ value の最初に現れるものを削除します。...
- https://man.plustar.jp/python/library/collections.html - [similar]
- 8.5. heapq --- ヒープキューアルゴリズム — Python 3.6.5 ドキュメント 9045
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ
...
ap entry_finder = {} # mapping of tasks to entries REMOVED = '<removed-task>' # placeholder for a removed ta...
ity of an existing task' if task in entry_finder : remove_task ( task ) count = next ( counter ) entry = [ p...
inder [ task ] = entry heappush ( pq , entry ) def remove_task ( task ): 'Mark an existing task as REMOVED....
ntry = entry_finder . pop ( task ) entry [ - 1 ] = REMOVED def pop_task (): 'Remove and return the lowest pr...
- https://man.plustar.jp/python/library/heapq.html - [similar]
- 18.5.1. 基底イベントループ — Python 3.6.5 ドキュメント 8709
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ
...
s.partial を使用してください 。 AbstractEventLoop. remove_reader ( fd ) ¶ 読み込み可能なファイル記述子の監視...
s.partial を使用してください 。 AbstractEventLoop. remove_writer ( fd ) ¶ 書き込み可能なファイル記述子の監視...
s.partial を使用してください 。 AbstractEventLoop. remove_signal_handler ( sig ) ¶ シグナル用のハンドラーを削...
We are done: unregister the file descriptor loop . remove_reader ( rsock ) # Stop the event loop loop . stop...
- https://man.plustar.jp/python/library/asyncio-eventloop.html - [similar]
- 8.4. collections.abc --- コレクションの抽象基底クラス — Python 3.6.5 ドキュメン... 8374
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ
...
承したメソッドと、 append , reverse , extend , pop , remove , __iadd__ ByteString Sequence __getitem__ , __len...
discard Set から継承したメソッドと、 clear , pop , remove , __ior__ , __iand__ , __ixor__ , __isub__ Mapping...
- https://man.plustar.jp/python/library/collections.abc.html - [similar]
- 14.2. configparser --- 設定ファイルのパーサー — Python 3.6.5 ドキュメント 8374
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ
...
ection1' , 'foo' )) # -> "Python is fun!" config . remove_option ( 'Section1' , 'bar' ) config . remove_opti...
なら、キーと値の間のデリミタはスペースで囲まれます。 remove_option ( section , option ) ¶ 指定された option を...
True を返します。そうでなければ False を返します。 remove_section ( section ) ¶ 指定された section を設定から...
- https://man.plustar.jp/python/library/configparser.html - [similar]