Python 3.6.5 ドキュメント 検索
Results of 1 - 10 of about 14 for garbage (0.028 sec.)
- 29.11. gc --- ガベージコレクタインターフェース — Python 3.6.5 ドキュメント 14249
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ
...
て検出されたオブジェクトは、インスペクション用に gc.garbage に保存されます。 gc モジュールは、以下の関数を提供...
代内で回収不能であることがわかった (そしてそれゆえに garbage リストに移動した) オブジェクトの総数です。 バージョ...
作することはできますが、その値は記憶されません): gc. garbage ¶ 到達不能であることが検出されたが、解放する事がで...
従い、 __del__() メソッドを持つオブジェクトはもう gc.garbage に行き着くことはありません。 gc. callbacks ¶ ガベー...
- https://man.plustar.jp/python/library/gc.html - [similar]
- 8.8. weakref --- 弱参照 — Python 3.6.5 ドキュメント 11045
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ
...
。リファレントへの参照が弱参照しか残っていない場合、 garbage collection はリファレントを自由に破棄し、メモリを別...
d to avoid creating references that will cause the garbage collector to keep the keys around longer than need...
y or indirectly, since otherwise obj will never be garbage collected. In particular, func should not be a bou...
object o = r () if o is None : # referent has been garbage collected print ( "Object has been deallocated; ca...
- https://man.plustar.jp/python/library/weakref.html - [similar]
- 用語集 — Python 3.6.5 ドキュメント 9032
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » 用語集 ¶ >>> インタ
...
2, 2, 0, 'alpha', 2), (3, 0, 0, 'alpha', 0), 8192) garbage collection The process of freeing memory when it i...
s not used anymore. Python performs garbage collection via reference counting and a cyclic gar...
is able to detect and break reference cycles. The garbage collector can be controlled using the gc module. g...
ーズに入ります。 このフェーズはガベージコレクター ( garbage collector ) を複数回呼び出します。 これによりユーザ...
- https://man.plustar.jp/python/glossary.html - [similar]
- 2. 拡張の型の定義: チュートリアル — Python 3.6.5 ドキュメント 8524
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python インタプリタ
...
loc handler on a type which doesn't support cyclic garbage collection [2] . ここではインスタンス変数を属性とし...
る ¶ Python は:term: ` 循環ガベージコレクタ(GC)機能<garbage collection> ` をもっており、これは不要なオブジェク...
in this example, because our type doesn't support garbage collection. [3] We now know that the first and las...
- https://man.plustar.jp/python/extending/newtypes_tutorial.html - [similar]
- 11. 標準ライブラリミニツアー --- その 2 — Python 3.6.5 ドキュメント 8524
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python チュートリア
...
トは参照カウント方式で管理し、ガベージコレクション( garbage collection )で循環参照を除去します)。オブジェクトに...
remove the one reference >>> gc . collect () # run garbage collection right away 0 >>> d [ 'primary' ] # entr...
- https://man.plustar.jp/python/tutorial/stdlib2.html - [similar]
- What's New In Python 3.1 — Python 3.6.5 ドキュメント 8524
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho
...
ng only untrackable objects are not tracked by the garbage collector. This can reduce the size of collections...
and therefore the garbage collection overhead on long-running programs, depe...
- https://man.plustar.jp/python/whatsnew/3.1.html - [similar]
- Pythonモジュール索引 — Python 3.6.5 ドキュメント 8192
- ナビゲーション 索引 モジュール | Python » 3.6.5 ドキュメント » Pythonモジュール索引 _ | a | b |
...
ble objects. g gc Interface to the cycle-detecting garbage collector. getopt Portable parser for command line...
- https://man.plustar.jp/python/py-modindex.html - [similar]
- 12.6. sqlite3 --- SQLite データベースに対する DB-API 2.0 インタフェース — Pytho... 7859
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ
...
trings will be encoded in UTF-8, unless you stored garbage in the # database ... assert row [ 0 ] == AUSTRIA...
- https://man.plustar.jp/python/library/sqlite3.html - [similar]
- 29.1. sys --- システムパラメータと関数 — Python 3.6.5 ドキュメント 7859
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ
...
lled when an asynchronous generator is about to be garbage collected. バージョン 3.6 で追加: See PEP 525 for...
- https://man.plustar.jp/python/library/sys.html - [similar]
- 3. データモデル — Python 3.6.5 ドキュメント 7859
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 言語リファレ
...
達不能 (unreachable) になると、ガベージコレクション (garbage-collection) によって処理されます。実装では、ごみ収...
e will be later detected and deleted by the cyclic garbage collector . A common cause of reference cycles is...
- https://man.plustar.jp/python/reference/datamodel.html - [similar]