Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

test_config: get the last PyConfig member #135

Merged
merged 1 commit into from
Jan 26, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions tests/test_pythoncapi_compat_cext.c
Original file line number Diff line number Diff line change
Expand Up @@ -2148,6 +2148,15 @@ test_config(PyObject *Py_UNUSED(module), PyObject *Py_UNUSED(args))
assert(PyLong_Check(obj));
Py_DECREF(obj);

// Get the last member
#if 0x030A0000 <= PY_VERSION_HEX
obj = PyConfig_Get("warn_default_encoding");
#else
obj = PyConfig_Get("user_site_directory");
#endif
assert(PyLong_Check(obj));
Py_DECREF(obj);

assert(PyConfig_Get("nonexistent") == NULL);
assert(PyErr_ExceptionMatches(PyExc_ValueError));
PyErr_Clear();
Expand Down
Loading