We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 454309b commit 7130e6bCopy full SHA for 7130e6b
Python/sysmodule.c
@@ -2130,10 +2130,10 @@ sys__clear_type_cache_impl(PyObject *module)
2130
/*[clinic end generated code: output=20e48ca54a6f6971 input=127f3e04a8d9b555]*/
2131
{
2132
if (PyErr_WarnEx(PyExc_DeprecationWarning,
2133
- "sys._clear_type_cache() is deprecated and scheduled for removal in a "
2134
- "future version. Use the more general sys._clear_internal_caches() "
2135
- "function instead.", 1) < 0)
2136
- {
+ "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){
2137
return NULL;
2138
}
2139
PyType_ClearCache();
0 commit comments