Skip to content

Commit 35e8c32

Browse files
author
roman_yakovenko
committed
sphinx
1 parent 3afc180 commit 35e8c32

File tree

2 files changed

+4
-5
lines changed

2 files changed

+4
-5
lines changed

pygccxml/binary_parsers/undname.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ class undname_creator_t:
6767
.dll, .map and .so files.
6868
6969
On Windows, the class works with unique name produced by MSVC compiler and
70-
with undecorated names produced by dbghelp.dll
70+
with undecorated names produced by `dbghelp.dll`
7171
7272
On Linux, the class works with mangled names produced by GCC-XML ( GCC 4.2 )
7373
compiler and demangled name produced by "nm" utility.

pygccxml/parser/directory_cache.py

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@ def cached_value(self, source_file, configuration):
156156
:param source_file: Header file name
157157
:type source_file: str
158158
:param configuration: Configuration object
159-
:type configuration: L{config_t}
159+
:type configuration: :class:`parser.config_t`
160160
:rtype: Cached declarations or None
161161
"""
162162

@@ -199,10 +199,9 @@ def cached_value(self, source_file, configuration):
199199
def _load(self):
200200
"""Load the cache.
201201
202-
Loads the file index.dat which contains the index table and
203-
the file name repository.
202+
Loads the `index.dat` file, which contains the index table and the file name repository.
204203
205-
This method is called by the constructor.
204+
This method is called by the :meth:`__init__`
206205
"""
207206

208207
indexfilename = os.path.join(self.__dir, "index.dat")

0 commit comments

Comments
 (0)