From 6baabc5975a9dc82f5165e619a29627ef146033f Mon Sep 17 00:00:00 2001 From: Delaney Granizo-Mackenzie Date: Wed, 2 Jul 2014 11:20:12 -0400 Subject: [PATCH] Update zipline-0.6.2.md --- docs/release-notes/zipline-0.6.2.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/release-notes/zipline-0.6.2.md b/docs/release-notes/zipline-0.6.2.md index fb767344..60da9103 100644 --- a/docs/release-notes/zipline-0.6.2.md +++ b/docs/release-notes/zipline-0.6.2.md @@ -85,17 +85,17 @@ * 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) +* Expanded record() functionality for dynamic naming. [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' + name = 'Dynamically_Generated_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.