File: __init__.py

package info (click to toggle)
python-numpy 1%3A1.1.0-3%2Blenny1
  • links: PTS, VCS
  • area: main
  • in suites: lenny
  • size: 9,548 kB
  • ctags: 14,321
  • sloc: ansic: 73,119; python: 59,655; cpp: 822; makefile: 179; fortran: 121; f90: 42
file content (27 lines) | stat: -rw-r--r-- 558 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
"""
Python Extensions Generator
"""

__all__ = ['Component']

from base import Component

for _m in ['utils', 'c_support', 'py_support', 'setup_py']:
    exec 'from %s import *' % (_m)
    exec 'import %s as _m' % (_m)
    __all__.extend(_m.__all__)

#from pyc_function import PyCFunction
#from pyc_argument import PyCArgument
#from c_code import CCode

#import c_type
#from c_type import *
#__all__ += c_type.__all__
#import c_struct
#from c_struct import *
#__all__ += c_struct.__all__#

#import predefined_components
#import converters
#c_type.register()