Table of Contents
Garbage collector in CPython
Detecting circular references
Home Backend Development Python Tutorial Learn about the garbage collector in CPython in one article

Learn about the garbage collector in CPython in one article

Oct 12, 2022 pm 03:32 PM
python

This article brings you relevant knowledge about Python, which mainly introduces related issues about CPython. CPython’s garbage collector is Python’s built-in method to solve the circular reference problem. Let’s take a look at it together, I hope it will be helpful to everyone.

Learn about the garbage collector in CPython in one article

[Related recommendations: Python3 video tutorial ]

Garbage collector in CPython

Garbage in CPython The collector (GC for short) is Python's built-in method to solve the circular reference problem. By default, it always runs in the background and works its magic every once in a while, so you don't have to worry about circular references clogging up your memory.

The garbage collector is designed to find and remove circularly referenced objects from CPython's working memory. It does this in the following way.

  • Detect circularly referenced objects

  • Call the final __del__ method

  • It starts from each Remove pointers from objects (to solve the loop problem), only if the loop is still orphaned after step 2

After this process is completed, every The object now has a reference count of 0, so the object will be deleted from memory.

Although it works automatically, we can actually import it as a module from the standard library. For example:

import gc
Copy after login

Detecting circular references

CPython's garbage collector tracks various objects that exist in memory--but not all objects. We can instantiate some objects and see if the garbage collector will collect them.

>>> gc.is_tracked("a string")
False
>>> gc.is_tracked(["a", "list"])
True
Copy after login

If an object can contain pointers, this gives it the ability to form part of a circular reference structure - and this is exactly what garbage detectors exist for, to detect and tear down. In Python such objects are often called "container objects".

So, the garbage collector needs to know about any objects that may exist as part of a circular reference. Strings cannot, so "a string" will not be tracked by the garbage collector. Lists (as we've seen) can contain pointers, so ['a', 'list'] is tracked.

Any instances of user-defined classes will also be tracked by the garbage collector, because we can always set arbitrary properties (pointers) on them.

>>> Wade = MyNameClass("Wade")
>>> gc.is_tracked(Wade)
True
Copy after login

So, the garbage collector knows all objects that may form circular references. How does it know if a circular reference has been formed?

It also knows all the pointers in each object, and where they point. We can see this action.

>>> my_list = ["a", "list"]
>>> gc.get_referents(my_list)
['list', 'a']
Copy after login

The get_referents method (also known as the traversal method) receives an object and returns a list of object pointers (its references) it contains. So, the above list contains pointers to each of its elements, which are strings.

Let's look at the get_referents method in a loop of objects (although not yet a circular reference, since the objects can still be accessed from the namespace).

>>> jane = MyNamedClass("Jane")
>>> bob = MyNamedClass("Bob")
>>> jane.friend = bob
>>> bob.friend = jane
>>> gc.get_referents(bob)
[{&#39;name&#39;: &#39;bob&#39;, &#39;friend&#39;: <__main__.MyNamedClass object at 0x7ff29a095d60>}, <class &#39;__main__
Copy after login

In this loop, we can see that the object pointed to by bob contains pointers to: its attribute dictionary, containing bob's name (bob) and its friends (also pointed to by jane MyNamedClass instance). The bob object also has a pointer to the class object itself, since bob.class will return that class object.

When the garbage collector runs, it checks whether every object it knows about (that is, any object that returns True when you call gc.is_tracked) is reachable from the namespace. It does this by tracking all pointers from the namespace, and pointers into the objects that those pointers point to, and so on, until it has built up an entire view of everything that is accessible from the code.

If after doing this, the GC finds that there are some objects that cannot be reached from the namespace, then it can clear these objects.

Remember that any objects still in memory must have a non-zero reference count, otherwise they will be deleted because of the reference count. For those objects that are unreachable but still have a non-zero reference count, they must be part of a circular reference, which is why we are so concerned about the possibility of these happening.

Let's go back to the reference loop, Jane and Bob, and turn this loop into an isolation loop by removing the pointer from the namespace.

>>> del jane
>>> del bob
Copy after login

Now, we know the exact situation that the garbage collector solves. We can trigger manual garbage collection by calling gc.collect().

>>> gc.collect()
Deleting Bob!
Deleting Jane!
4
Copy after login

By default, the garbage collector will automatically perform this action every once in a while (because more and more objects are created and destroyed while CPython is running).

In the above code snippet, the output we see contains the print statement from the __del__ method of MyNamClass, with a number at the end -- in this case, 4. This number is output by the garbage collector itself and tells us how many objects were removed.

【Related recommendations: Python3 video tutorial

The above is the detailed content of Learn about the garbage collector in CPython in one article. For more information, please follow other related articles on the PHP Chinese website!

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Is the vscode extension malicious? Is the vscode extension malicious? Apr 15, 2025 pm 07:57 PM

VS Code extensions pose malicious risks, such as hiding malicious code, exploiting vulnerabilities, and masturbating as legitimate extensions. Methods to identify malicious extensions include: checking publishers, reading comments, checking code, and installing with caution. Security measures also include: security awareness, good habits, regular updates and antivirus software.

How to run programs in terminal vscode How to run programs in terminal vscode Apr 15, 2025 pm 06:42 PM

In VS Code, you can run the program in the terminal through the following steps: Prepare the code and open the integrated terminal to ensure that the code directory is consistent with the terminal working directory. Select the run command according to the programming language (such as Python's python your_file_name.py) to check whether it runs successfully and resolve errors. Use the debugger to improve debugging efficiency.

Can vs code run in Windows 8 Can vs code run in Windows 8 Apr 15, 2025 pm 07:24 PM

VS Code can run on Windows 8, but the experience may not be great. First make sure the system has been updated to the latest patch, then download the VS Code installation package that matches the system architecture and install it as prompted. After installation, be aware that some extensions may be incompatible with Windows 8 and need to look for alternative extensions or use newer Windows systems in a virtual machine. Install the necessary extensions to check whether they work properly. Although VS Code is feasible on Windows 8, it is recommended to upgrade to a newer Windows system for a better development experience and security.

Can visual studio code be used in python Can visual studio code be used in python Apr 15, 2025 pm 08:18 PM

VS Code can be used to write Python and provides many features that make it an ideal tool for developing Python applications. It allows users to: install Python extensions to get functions such as code completion, syntax highlighting, and debugging. Use the debugger to track code step by step, find and fix errors. Integrate Git for version control. Use code formatting tools to maintain code consistency. Use the Linting tool to spot potential problems ahead of time.

Choosing Between PHP and Python: A Guide Choosing Between PHP and Python: A Guide Apr 18, 2025 am 12:24 AM

PHP is suitable for web development and rapid prototyping, and Python is suitable for data science and machine learning. 1.PHP is used for dynamic web development, with simple syntax and suitable for rapid development. 2. Python has concise syntax, is suitable for multiple fields, and has a strong library ecosystem.

Can vscode be used for mac Can vscode be used for mac Apr 15, 2025 pm 07:36 PM

VS Code is available on Mac. It has powerful extensions, Git integration, terminal and debugger, and also offers a wealth of setup options. However, for particularly large projects or highly professional development, VS Code may have performance or functional limitations.

PHP and Python: Different Paradigms Explained PHP and Python: Different Paradigms Explained Apr 18, 2025 am 12:26 AM

PHP is mainly procedural programming, but also supports object-oriented programming (OOP); Python supports a variety of paradigms, including OOP, functional and procedural programming. PHP is suitable for web development, and Python is suitable for a variety of applications such as data analysis and machine learning.

Can vscode run ipynb Can vscode run ipynb Apr 15, 2025 pm 07:30 PM

The key to running Jupyter Notebook in VS Code is to ensure that the Python environment is properly configured, understand that the code execution order is consistent with the cell order, and be aware of large files or external libraries that may affect performance. The code completion and debugging functions provided by VS Code can greatly improve coding efficiency and reduce errors.

See all articles