[pygccxml-commit] SF.net SVN: pygccxml:[1666]
Brought to you by:
mbaas,
roman_yakovenko
From: <rom...@us...> - 2009-02-09 12:22:16
|
Revision: 1666 http://pygccxml.svn.sourceforge.net/pygccxml/?rev=1666&view=rev Author: roman_yakovenko Date: 2009-02-09 11:29:59 +0000 (Mon, 09 Feb 2009) Log Message: ----------- sphinx Modified Paths: -------------- pygccxml_dev/pygccxml/parser/directory_cache.py pyplusplus_dev/pyplusplus/code_creators/ctypes_module.py Modified: pygccxml_dev/pygccxml/parser/directory_cache.py =================================================================== --- pygccxml_dev/pygccxml/parser/directory_cache.py 2009-02-09 11:16:07 UTC (rev 1665) +++ pygccxml_dev/pygccxml/parser/directory_cache.py 2009-02-09 11:29:59 UTC (rev 1666) @@ -6,11 +6,13 @@ # The initial version of the directory_cache_t class was written # by Matthias Baas (ba...@ir...). -"""Directory cache implementation. +""" +directory cache implementation. This module contains the implementation of a cache that uses individual -files stored in a dedicated cache directory to store the cached contents. -The cache class is :class:`parser.directory_cache_t` which can be passed as the `cache` +files, stored in a dedicated cache directory, to store the cached contents. + +The :class:`parser.directory_cache_t` class instance could be passed as the `cache` argument of the :func:`parser.parse` function. """ @@ -19,9 +21,10 @@ import declarations_cache class index_entry_t: - """Entry of the index table in the directory cache index. + """ + Entry of the index table in the directory cache index. - Each cached header file (i.e. each *.cache file) has a corresponding + Each cached header file (i.e. each .cache file) has a corresponding index_entry_t object. This object is used to determine whether the cache file with the declarations is still valid or not. @@ -48,9 +51,9 @@ The cache stores one index file called `index.dat` which is always read by the cache when the cache object is created. Each header file - will have its corresponding *.cache file that stores the declarations + will have its corresponding .cache file that stores the declarations found in the header file. The index file is used to determine whether - a *.cache file is still valid or not (by checking if one of the dependent + a .cache file is still valid or not (by checking if one of the dependent files (i.e. the header file itself and all included files) have been modified since the last run). """ Modified: pyplusplus_dev/pyplusplus/code_creators/ctypes_module.py =================================================================== --- pyplusplus_dev/pyplusplus/code_creators/ctypes_module.py 2009-02-09 11:16:07 UTC (rev 1665) +++ pyplusplus_dev/pyplusplus/code_creators/ctypes_module.py 2009-02-09 11:29:59 UTC (rev 1666) @@ -5,7 +5,6 @@ import os import module -import import_ import library_reference from pygccxml import utils This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |