From 9e9a1b9be24b6adb012d1e02efd6650e96a6a364 Mon Sep 17 00:00:00 2001 From: d33bs Date: Sat, 13 Jan 2024 15:21:51 -0700 Subject: [PATCH] assumption about python memory --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index d6aacc4..107c490 100644 --- a/README.md +++ b/README.md @@ -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](). 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