diff options
Diffstat (limited to 'longbow/src/python')
-rwxr-xr-x | longbow/src/python/site-packages/longbow/Language_C.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/longbow/src/python/site-packages/longbow/Language_C.py b/longbow/src/python/site-packages/longbow/Language_C.py index 85183133..1d97a676 100755 --- a/longbow/src/python/site-packages/longbow/Language_C.py +++ b/longbow/src/python/site-packages/longbow/Language_C.py @@ -47,8 +47,10 @@ def getLibPathForObject(libraryPath, filename): return result class Module: - '''Represent a C language module. + ''' + Represent a C language module. A module consists of the file names of the C source, C header file, object file, and an executable file + ''' def __init__(self, srcPath, objectDirs=[]): self.path = self.initialzePath(srcPath) if not objectDirs: |