From f07c009c1e012ddd8ac63d28d3f206de35a85ae4 Mon Sep 17 00:00:00 2001 From: Tal Einat Date: Sun, 6 Jan 2019 09:00:58 +0200 Subject: [PATCH] remove doc-string declaration no longer used after AC conversion --- Python/sysmodule.c | 4 ---- 1 file changed, 4 deletions(-) diff --git a/Python/sysmodule.c b/Python/sysmodule.c index 4150fbbbd997d5..10707fd23fc628 100644 --- a/Python/sysmodule.c +++ b/Python/sysmodule.c @@ -1594,10 +1594,6 @@ sys__clear_type_cache_impl(PyObject *module) Py_RETURN_NONE; } -PyDoc_STRVAR(sys_clear_type_cache__doc__, -"_clear_type_cache() -> None\n\ -Clear the internal type lookup cache."); - /*[clinic input] sys.is_finalizing