]> granicus.if.org Git - python/commitdiff
remove doc-string declaration no longer used after AC conversion (GH-11444)
authorTal Einat <taleinat+github@gmail.com>
Sun, 6 Jan 2019 08:10:34 +0000 (10:10 +0200)
committerGitHub <noreply@github.com>
Sun, 6 Jan 2019 08:10:34 +0000 (10:10 +0200)
Python/sysmodule.c

index 4150fbbbd997d5c5e759475bdb7a1a907a9f34b8..10707fd23fc628f860ee55dbe6f59884a61be551 100644 (file)
@@ -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