diff options
author | Tal Einat <taleinat+github@gmail.com> | 2019-01-06 08:10:34 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-01-06 08:10:34 (GMT) |
commit | a5b76167dedf4d15211a216c3ca7b98e3cec33b8 (patch) | |
tree | 7cfc83dfd701031b4d93d1de00178777eca026ca | |
parent | 67ba547cf001d6b975cf6900aaf2bd5508dc6a87 (diff) | |
download | cpython-a5b76167dedf4d15211a216c3ca7b98e3cec33b8.zip cpython-a5b76167dedf4d15211a216c3ca7b98e3cec33b8.tar.gz cpython-a5b76167dedf4d15211a216c3ca7b98e3cec33b8.tar.bz2 |
remove doc-string declaration no longer used after AC conversion (GH-11444)
-rw-r--r-- | Python/sysmodule.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/Python/sysmodule.c b/Python/sysmodule.c index 4150fbb..10707fd 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 |