From: Tal Einat Date: Sun, 6 Jan 2019 08:10:34 +0000 (+0200) Subject: remove doc-string declaration no longer used after AC conversion (GH-11444) X-Git-Tag: v3.8.0a1~144 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a5b76167dedf4d15211a216c3ca7b98e3cec33b8;p=thirdparty%2FPython%2Fcpython.git remove doc-string declaration no longer used after AC conversion (GH-11444) --- diff --git a/Python/sysmodule.c b/Python/sysmodule.c index 4150fbbbd997..10707fd23fc6 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