Skip to content
This repository was archived by the owner on Oct 29, 2018. It is now read-only.

Latest commit

 

History

History
24 lines (12 loc) · 455 Bytes

File metadata and controls

24 lines (12 loc) · 455 Bytes

gc

Methods

gc.enable()

Enable automatic garbage collection.

gc.disable()

Disable automatic garbage collection. Heap memory can still be allocated, and garbage collection can still be initiated manually using gc.collect().

gc.collect()

Run a garbage collection.

gc.mem_alloc()

Return the number of bytes of heap RAM that are allocated.

gc.mem_free()

Return the number of bytes of available heap RAM.