bpo-42923: _Py_DumpExtensionModules() ignores stdlib ext (GH-24254)

This commit is contained in:
Victor Stinner 2021-01-19 23:35:27 +01:00 committed by GitHub
parent cad8020cb8
commit 66f77caca3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 65 additions and 26 deletions

View file

@ -74,7 +74,7 @@ PyAPI_FUNC(void) _Py_DumpASCII(int fd, PyObject *text);
This function is signal safe. */
PyAPI_FUNC(void) _Py_DumpDecimal(
int fd,
unsigned long value);
size_t value);
/* Format an integer as hexadecimal with width digits into fd file descriptor.
The function is signal safe. */