mirror of
https://github.com/python/cpython.git
synced 2025-12-04 00:30:19 +00:00
bpo-45439: Move _PyObject_CallNoArgs() to pycore_call.h (GH-28895)
* Move _PyObject_CallNoArgs() to pycore_call.h (internal C API). * _ssl, _sqlite and _testcapi extensions now call the public PyObject_CallNoArgs() function, rather than _PyObject_CallNoArgs(). * _lsprof extension is now built with Py_BUILD_CORE_MODULE macro defined to get access to internal _PyObject_CallNoArgs().
This commit is contained in:
parent
be21706f37
commit
d943d19172
38 changed files with 89 additions and 64 deletions
|
|
@ -3773,7 +3773,7 @@ _password_callback(char *buf, int size, int rwflag, void *userdata)
|
|||
}
|
||||
|
||||
if (pw_info->callable) {
|
||||
fn_ret = _PyObject_CallNoArgs(pw_info->callable);
|
||||
fn_ret = PyObject_CallNoArgs(pw_info->callable);
|
||||
if (!fn_ret) {
|
||||
/* TODO: It would be nice to move _ctypes_add_traceback() into the
|
||||
core python API, so we could use it to add a frame here */
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue