python
Differences
This shows you the differences between two versions of the page.
| Both sides previous revisionPrevious revision | |||
| python [2026/01/12 18:13] – carl | python [2026/04/01 20:31] (current) – carl | ||
|---|---|---|---|
| Line 57: | Line 57: | ||
| * Futures don't have a getstate() method. | * Futures don't have a getstate() method. | ||
| + | |||
| + | |||
| + | |||
| + | ==== Memory ==== | ||
| + | |||
| + | Python does not have a compacting garbage collector, so memory allocations eventually fill up RSS. When a mixture of long lived and short lived objects are allocated around the same time, Python (pymalloc) allocates them possibly in the same arena. | ||
python.txt · Last modified: by carl
