◐ Shell
clean mode source ↗

bpo-32030: Add more options to _PyCoreConfig by vstinner · Pull Request #4485 · python/cpython

Conversation

@vstinner

Py_Main() now handles two more -X options:

  • -X showrefcount: new _PyCoreConfig.show_ref_count field
  • -X showalloccount: new _PyCoreConfig.show_alloc_count field

https://bugs.python.org/issue32030

Py_Main() now handles two more -X options:

* -X showrefcount: new _PyCoreConfig.show_ref_count field
* -X showalloccount: new _PyCoreConfig.show_alloc_count field

ncoghlan

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ah, I love reviewing these PRs that incrementally flesh out the PEP 432 config structs with actual content. So much better than trying to ensure I covered everything in a separately maintained all-or-nothing branch :)

@vstinner

Labels