From c092e4db4de8b04b33cb4535535b21112dc63f20 Mon Sep 17 00:00:00 2001 From: Scott Sanderson Date: Mon, 30 Jan 2017 13:33:21 -0500 Subject: [PATCH] DOC: Update out of date docstring. --- zipline/testing/fixtures.py | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/zipline/testing/fixtures.py b/zipline/testing/fixtures.py index dcf01a23..698f8055 100644 --- a/zipline/testing/fixtures.py +++ b/zipline/testing/fixtures.py @@ -883,11 +883,9 @@ class WithEquityMinuteBarData(_WithMinuteBarDataBase): Methods ------- make_equity_minute_bar_data() -> iterable[(int, pd.DataFrame)] - A class method that returns a dict mapping sid to dataframe - which will be written to into the the format of the inherited - class which writes the minute bar data for use by a reader. - By default this creates some simple sythetic data with - :func:`~zipline.testing.create_minute_bar_data` + Classmethod producing an iterator of (sid, minute_data) pairs. + The default implementation invokes + zipline.testing.core.create_minute_bar_data. See Also --------