MAINT: Refactors Security to Asset

This commit refactors the Security cython class to Asset, and refactors some fields of the class accordingly. This change is so the terminology is consistent and correct when Asset is extended to asset types that are not securities, such as futures.
This commit is contained in:
jfkirk
2015-03-19 13:23:40 -04:00
parent d593bde668
commit 2fd2f02c2a
4 changed files with 62 additions and 77 deletions
+2 -2
View File
@@ -20,8 +20,8 @@ import numpy as np
ext_modules = [
Extension(
'zipline.assets._securities',
['zipline/assets/_securities.pyx'],
'zipline.assets._assets',
['zipline/assets/_assets.pyx'],
include_dirs=[np.get_include()],
),
]