From 72a31ceb7d37a4030a208b3d2fcc62e36ee3207f Mon Sep 17 00:00:00 2001 From: Scott Sanderson Date: Tue, 16 Aug 2016 14:34:57 -0400 Subject: [PATCH] DOC: Docstring cleanups. --- zipline/pipeline/graph.py | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/zipline/pipeline/graph.py b/zipline/pipeline/graph.py index e18c3602..9ff09d45 100644 --- a/zipline/pipeline/graph.py +++ b/zipline/pipeline/graph.py @@ -136,7 +136,12 @@ class ExecutionPlan(TermGraph): terms : dict A dict mapping names to final output terms. all_dates : pd.DatetimeIndex - The dates fo + An index of all known trading days for which ``terms`` will be + computed. + start_date : pd.Timestamp + The first date for which output is requested for ``terms``. + end_date : pd.Timestamp + The last date for which output is requested for ``terms``. Attributes ---------- @@ -282,9 +287,6 @@ class ExecutionPlan(TermGraph): """ A dict mapping `term` -> `# of extra rows to load/compute of `term`. - This is always the maximum number of extra **input** rows required by - any Filter/Factor for which `term` is an input. - Notes ---- This value depends on the other terms in the graph that require `term`