Home | History | Annotate | Download | only in distutils

Lines Matching defs:Extension

1 """distutils.extension
3 Provides the Extension class, used to describe C/C++ extension
26 class Extension:
27 """Just a collection of attributes that describes an extension
33 the full name of the extension, including any packages -- ie.
40 by the "build_ext" command as source for a Python extension.
57 (for shared extensions, this is when the extension is loaded)
70 when linking object files together to create the extension (or
74 list of symbols to be exported from a shared extension. Not
80 extension.
82 list of files that the extension depends on
84 extension language (i.e. "c", "c++", "objc"). Will be detected
131 msg = "Unknown Extension options: " + string.join(L, ', ')
136 # class Extension
173 # makesetup script: here, there must be exactly one extension per
179 ext = Extension(module, [])