From 0fff04d9c17e462c067cad65f6c5501fedccd15e Mon Sep 17 00:00:00 2001 From: llllllllll Date: Wed, 14 Oct 2015 11:35:49 -0400 Subject: [PATCH] DOC: update doctest --- zipline/lib/adjustment.pyx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/zipline/lib/adjustment.pyx b/zipline/lib/adjustment.pyx index 2b64642c..c0699540 100644 --- a/zipline/lib/adjustment.pyx +++ b/zipline/lib/adjustment.pyx @@ -75,7 +75,7 @@ cpdef _from_assets_and_dates(cls, ... 3, ... 0.5, ... ) - Float64Multiply(first_row=2, last_row=4, col=3, value=0.500000) + Float64Multiply(first_row=2, last_row=4, first_col=3, last_col=3, value=0.500000) # noqa """ cdef: Py_ssize_t first_row, last_row, col @@ -171,8 +171,8 @@ cdef class Float64Multiply(Float64Adjustment): >>> adj.mutate(arr) >>> arr array([[ 0., 1., 2.], - [ 3., 16., 20.], - [ 6., 28., 32.]]) + [ 3., 16., 20.], + [ 6., 28., 32.]]) """ cpdef mutate(self, float64_t[:, :] data):