* pygnulib/GLModuleSystem.py (GLModule.isTests, GLModule.isNonTests):
Update comments.
+2024-03-18 Bruno Haible <bruno@clisp.org>
+
+ gnulib-tool.py: Tweak last change.
+ * pygnulib/GLModuleSystem.py (GLModule.isTests, GLModule.isNonTests):
+ Update comments.
+
2024-03-18 Collin Funk <collin.funk1@gmail.com>
gnulib-tool.py: Follow gnulib-tool changes, part 64.
def isTests(self):
'''GLModule.isTests() -> bool
- Check whether module is a -tests version of module.'''
+ Check whether module is a *-tests module or a module of
+ applicability 'all'.'''
result = self.getApplicability() != 'main'
return result
def isNonTests(self):
- '''GLModule.isTests() -> bool
+ '''GLModule.isNonTests() -> bool
- Check whether module is not a -tests version of module.'''
+ Check whether module is not a *-tests module.'''
result = not self.getName().endswith('-tests')
return result