From 1b7d0c9477d38f6e008f8a93f9b384cc1ca684ff Mon Sep 17 00:00:00 2001 From: Scott Sanderson Date: Fri, 13 Nov 2015 17:08:04 -0500 Subject: [PATCH] MAINT: Add __future__ print function import. We do print(stock) in this file, which happens to work in py2, but is confusing. --- zipline/data/loader.py | 1 + 1 file changed, 1 insertion(+) diff --git a/zipline/data/loader.py b/zipline/data/loader.py index 2c42759a..31179094 100644 --- a/zipline/data/loader.py +++ b/zipline/data/loader.py @@ -12,6 +12,7 @@ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. +from __future__ import print_function import os from collections import OrderedDict