Skip to content

Commit

Permalink
Address review comments
Browse files Browse the repository at this point in the history
  • Loading branch information
srinivasreddy committed Jan 24, 2025
1 parent 454309b commit 7130e6b
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Python/sysmodule.c
Original file line number Diff line number Diff line change
Expand Up @@ -2130,10 +2130,10 @@ sys__clear_type_cache_impl(PyObject *module)
/*[clinic end generated code: output=20e48ca54a6f6971 input=127f3e04a8d9b555]*/
{
if (PyErr_WarnEx(PyExc_DeprecationWarning,
"sys._clear_type_cache() is deprecated and scheduled for removal in a "
"future version. Use the more general sys._clear_internal_caches() "
"function instead.", 1) < 0)
{
"sys._clear_type_cache() is deprecated and scheduled"
" for removal in a future version. Use the more general"
" sys._clear_internal_caches() function instead.",
1) < 0){
return NULL;
}
PyType_ClearCache();
Expand Down

0 comments on commit 7130e6b

Please sign in to comment.