From ff90beca6b314c7e52ff8b256059effc215fcc0a Mon Sep 17 00:00:00 2001 From: Dave Halter Date: Mon, 20 Mar 2017 21:10:49 +0100 Subject: [PATCH] Remove some documentation that was not necessary. --- jedi/cache.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/jedi/cache.py b/jedi/cache.py index ebce125e..0d662aff 100644 --- a/jedi/cache.py +++ b/jedi/cache.py @@ -3,8 +3,6 @@ This caching is very important for speed and memory optimizations. There's nothing really spectacular, just some decorators. The following cache types are available: -- module caching (`load_parser` and `save_parser`), which uses pickle and is - really important to assure low load times of modules like ``numpy``. - ``time_cache`` can be used to cache something for just a limited time span, which can be useful if there's user interaction and the user cannot react faster than a certain time.