From 6920fec9a3a4909f6c20bc03c92e32d5bbc72f73 Mon Sep 17 00:00:00 2001 From: Delaney Granizo-Mackenzie Date: Wed, 2 Jul 2014 10:57:27 -0400 Subject: [PATCH] Update zipline-0.6.2.md Added a note about record functionality. --- docs/release-notes/zipline-0.6.2.md | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/docs/release-notes/zipline-0.6.2.md b/docs/release-notes/zipline-0.6.2.md index 1ca9a22e..9662f8f5 100644 --- a/docs/release-notes/zipline-0.6.2.md +++ b/docs/release-notes/zipline-0.6.2.md @@ -85,6 +85,18 @@ * Adds an `all_api_methods` classmethod on `TradingAlgorithm` that returns a list of all `TradingAlgorithm` API methods. [PR333](https://github.com/quantopian/zipline/pull/333) +* Expanded record() functionality. [PR325](https://github.com/quantopian/zipline/pull/355) + + > The record() function can now take positional args before the kwargs. + > All original usage and functionality is the same, but now these + > extra usages will work: + + - name = 'string' + - record( name, value, ... ) + - record( name, value1, 'name2', value2, name3=value3, name4=value4) + + > The requirements are simply that the poritional args occur only before the + > kwargs. ## Bug Fixes (BUG)