New submission from Pablo Galindo Salgado <pablog...@gmail.com>:

gc.get_objects() return all the objects tracked by the garbage collector. This 
is useful, but right now there is no way of knowing in which generation each 
object is currently on. This information can be beneficial to understand better 
the state of the garbage collector in a particular moment in time. 

This will allow knowing what are the oldest object tracked by the collector, 
gathering more fine-grained statistics about how generations are filled, better 
debugging and better insights about the internal structure of the generations.

To allow this, I propose a new optional parameter to gc.get_objects, allowing 
the user to specify the generation to get the objects from.

----------
components: Interpreter Core
messages: 335787
nosy: pablogsal
priority: normal
severity: normal
status: open
title: Allow gc.getobjects to return the objects tracked by a specific 
generation
versions: Python 3.8

_______________________________________
Python tracker <rep...@bugs.python.org>
<https://bugs.python.org/issue36016>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to