This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author vstinner
Recipients vstinner
Date 2019-04-15.14:51:20
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1555339880.27.0.999764272678.issue36635@roundup.psfhosted.org>
In-reply-to
Content
Python headers are being reorganized to clarify what's public, specific to CPython or "internal". See issues bpo-35134 (Add a new Include/cpython/ subdirectory) and bpo-35081 (Move internal headers to Include/internal/).

Problem: the _testcapi module designed to only test the *public* API. Functions tested by _testcapi cannot be made internal.

I propose to add a new _testinternalcapi module reserved to test internal APIs.

Attached PR implements this idea: it makes _Py_GetConfigsAsDict() private and moves _testcapi.get_configs() to _testinternalcapi.get_configs().
History
Date User Action Args
2019-04-15 14:51:20vstinnersetrecipients: + vstinner
2019-04-15 14:51:20vstinnersetmessageid: <1555339880.27.0.999764272678.issue36635@roundup.psfhosted.org>
2019-04-15 14:51:20vstinnerlinkissue36635 messages
2019-04-15 14:51:20vstinnercreate