From a684063f95c80812d8936c4e2e0b3499ae755cb2 Mon Sep 17 00:00:00 2001 From: Scott Sanderson Date: Thu, 5 Nov 2015 11:35:10 -0500 Subject: [PATCH] DOC: Don't lie about caching in _retrieve_asset. --- zipline/assets/assets.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/zipline/assets/assets.py b/zipline/assets/assets.py index 95ef6b78..94bcb210 100644 --- a/zipline/assets/assets.py +++ b/zipline/assets/assets.py @@ -270,8 +270,8 @@ class AssetFinder(object): """ Internal function for loading assets from a table. - This function does not do any caching. It is assumed that this will be - called at most once with any given sid. + This should be the only method of `AssetFinder` that writes Assets into + self._asset_cache. Parameters ---------