* pygnulib/GLModuleSystem.py (GLModule.getDependentsRecursively): Adjust
type hint and doc string to correctly state a set of GLModule's is
returned.
+2024-08-02 Collin Funk <collin.funk1@gmail.com>
+
+ gnulib-tool.py: Correct type hint and doc string.
+ * pygnulib/GLModuleSystem.py (GLModule.getDependentsRecursively): Adjust
+ type hint and doc string to correctly state a set of GLModule's is
+ returned.
+
2024-08-02 Bruno Haible <bruno@clisp.org>
Allow use of --avoid=extensions-aix.
self.cache['dependents'] = result
return self.cache['dependents']
- def getDependentsRecursively(self) -> str:
+ def getDependentsRecursively(self) -> set[GLModule]:
'''Return a list of recursive dependents of this module,
- as a list of GLModule objects.'''
+ as a set of GLModule objects.'''
handledmodules = set()
inmodules = set()
outmodules = set()