vnpy/vn.trader/vtConstant.py

10 lines
223 B
Python
Raw Normal View History

2016-07-02 03:12:44 +00:00
# encoding: UTF-8
2017-04-28 14:10:07 +00:00
from language import constant
2016-07-02 03:12:44 +00:00
2017-04-28 14:10:07 +00:00
# 将常量定义添加到vtConstant.py的局部字典中
d = locals()
for name in dir(constant):
if '__' not in name:
d[name] = constant.__getattribute__(name)