Skip to content

Commit d1a2203

Browse files
committed
project_reader: clarify variable names
1 parent b56397d commit d1a2203

File tree

1 file changed

+15
-15
lines changed

1 file changed

+15
-15
lines changed

src/pygccxml/parser/project_reader.py

+15-15
Original file line numberDiff line numberDiff line change
@@ -321,21 +321,21 @@ def __parse_file_by_file(self, files):
321321
self.logger.debug(
322322
"Cache has been flushed in %.1f secs",
323323
(timeit.default_timer() - start_time))
324-
answer = []
324+
namespaces = []
325325
self.logger.debug("Joining namespaces ...")
326326
for file_nss in namespaces:
327-
answer = self._join_top_namespaces(answer, file_nss)
327+
namespaces = self._join_top_namespaces(namespaces, file_nss)
328328
self.logger.debug("Joining declarations ...")
329-
for ns in answer:
330-
if isinstance(ns, pygccxml.declarations.namespace_t):
331-
declarations_joiner.join_declarations(ns)
332-
leaved_classes = self._join_class_hierarchy(answer)
333-
types = self.__declarated_types(answer)
329+
for namespace in namespaces:
330+
if isinstance(namespace, pygccxml.declarations.namespace_t):
331+
declarations_joiner.join_declarations(namespace)
332+
leaved_classes = self._join_class_hierarchy(namespaces)
333+
types = self.__declarated_types(namespaces)
334334
self.logger.debug("Relinking declared types ...")
335335
self._relink_declarated_types(leaved_classes, types)
336336
declarations_joiner.bind_aliases(
337-
pygccxml.declarations.make_flatten(answer))
338-
return answer
337+
pygccxml.declarations.make_flatten(namespaces))
338+
return namespaces
339339

340340
def __parse_all_at_once(self, files):
341341
config = self.__config.clone()
@@ -353,12 +353,12 @@ def __parse_all_at_once(self, files):
353353
header_content.append(
354354
'#include "%s" %s' %
355355
(header, os.linesep))
356-
declarations = self.read_string(''.join(header_content))
357-
declarations = self._join_top_namespaces(declarations, [])
358-
for ns in declarations:
359-
if isinstance(ns, pygccxml.declarations.namespace_t):
360-
declarations_joiner.join_declarations(ns)
361-
return declarations
356+
namespaces = self.read_string(''.join(header_content))
357+
namespaces = self._join_top_namespaces(namespaces, [])
358+
for namespace in namespaces:
359+
if isinstance(namespace, pygccxml.declarations.namespace_t):
360+
declarations_joiner.join_declarations(namespace)
361+
return namespaces
362362

363363
def read_string(self, content):
364364
"""Parse a string containing C/C++ source code.

0 commit comments

Comments
 (0)