Merge pull request #1310 from cclauss/patch-1

Use print() function in both Python 2 and Python 3
This commit is contained in:
vn.py 2018-12-29 09:35:07 +08:00 committed by GitHub
commit da902cde95
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,5 +1,7 @@
# encoding: UTF-8
from __future__ import print_function
from csv import DictReader
from datetime import datetime
from collections import OrderedDict, defaultdict
@ -306,7 +308,7 @@ class BacktestingEngine(object):
#----------------------------------------------------------------------
def output(self, content):
"""输出信息"""
print content
print(content)
#----------------------------------------------------------------------
def getTradeData(self, vtSymbol=''):