Skip to content

Commit

Permalink
pythongh-96641: Do not expose KeyWrapper in _functoolsmodule.c (p…
Browse files Browse the repository at this point in the history
…ythongh-96642)

(cherry picked from commit 2fd7246)

Co-authored-by: Nikita Sobolev <mail@sobolevn.me>
  • Loading branch information
sobolevn authored and miss-islington committed Sep 7, 2022
1 parent b6af933 commit 945b8f7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Do not expose ``KeyWrapper`` in :mod:`_functools`.
5 changes: 2 additions & 3 deletions Modules/_functoolsmodule.c
Original file line number Diff line number Diff line change
Expand Up @@ -1470,9 +1470,8 @@ _functools_exec(PyObject *module)
if (state->keyobject_type == NULL) {
return -1;
}
if (PyModule_AddType(module, state->keyobject_type) < 0) {
return -1;
}
// keyobject_type is used only internally.
// So we don't expose it in module namespace.

state->lru_list_elem_type = (PyTypeObject *)PyType_FromModuleAndSpec(
module, &lru_list_elem_type_spec, NULL);
Expand Down

0 comments on commit 945b8f7

Please sign in to comment.