From 5118789e9be4c0bc43c57f41308faa58c7269c01 Mon Sep 17 00:00:00 2001 From: Eddie Hebert Date: Mon, 25 Mar 2013 15:34:27 -0400 Subject: [PATCH] MAINT: Removes unused mock data function from gens.utils This function is unused, and on the general path of moving testing functions out of gens.utils # Please enter the commit message for your changes. Lines starting --- zipline/gens/utils.py | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/zipline/gens/utils.py b/zipline/gens/utils.py index d2f1b0fb..67570526 100644 --- a/zipline/gens/utils.py +++ b/zipline/gens/utils.py @@ -26,16 +26,6 @@ from zipline.protocol import ( ) -def mock_raw_event(sid, dt): - event = { - 'sid': sid, - 'dt': dt, - 'price': 1.0, - 'volume': 1 - } - return event - - def alternate(g1, g2): """Specialized version of roundrobin for just 2 generators.""" for e1, e2 in izip_longest(g1, g2):