2016-07-02 03:12:44 +00:00
|
|
|
# encoding: UTF-8
|
|
|
|
|
2017-05-03 10:03:17 +00:00
|
|
|
print 'laoding vntrader.vtConstant'
|
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)
|
2017-05-03 10:03:17 +00:00
|
|
|
|
|
|
|
print 'finished load vntrader.vtConstant'
|