vnpy/vn.trader/vtConstant.py

10 lines
223 B
Python
Raw Normal View History

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