]> git.ipfire.org Git - thirdparty/gnulib.git/commitdiff
gnulib-tool.py: Tweak last change.
authorBruno Haible <bruno@clisp.org>
Mon, 18 Mar 2024 11:02:01 +0000 (12:02 +0100)
committerBruno Haible <bruno@clisp.org>
Mon, 18 Mar 2024 11:06:19 +0000 (12:06 +0100)
* pygnulib/GLModuleSystem.py (GLModule.isTests, GLModule.isNonTests):
Update comments.

ChangeLog
pygnulib/GLModuleSystem.py

index a545806fdacbe3b9f93be177a31834367fb81a37..075a52f6b3a0bbe2be8e599161dea04365c5e87a 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+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.
index 2c5f36b6b09b80f3b423f961e51ee3e17e83eccb..4e4306fe377cf45965772f2e804666e4ac73ab10 100644 (file)
@@ -307,14 +307,15 @@ class GLModule(object):
     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