Skip to content

Commit

Permalink
assumption about python memory
Browse files Browse the repository at this point in the history
  • Loading branch information
d33bs committed Jan 13, 2024
1 parent 13c962c commit 9e9a1b9
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,7 @@ High-level languages such as Python often remove the requirement for software de
Python code is executed by the Python [interpreter](<https://en.wikipedia.org/wiki/Interpreter_(computing)>).
Memory is managed for Python software processes automatically (when unspecified) or manually (when specified) through the Python interpreter.
The ___Python memory manager___ manages memory through a private heap for Python software processes through the Python interpreter and CPython ([Python: Memory Management](https://docs.python.org/3/c-api/memory.html)).
From a high-level perspective, we assume variables and other operations written in Python will automatically allocate memory through the Python interpreter when executed.

### Garbage Collection

Expand Down

0 comments on commit 9e9a1b9

Please sign in to comment.