* pygnulib/GLImport.py (GLImport.prepare): Remove the str.lower key from
the call to sorted().
+2024-04-01 Collin Funk <collin.funk1@gmail.com>
+
+ gnulib-tool.py: Use case-sensitive sorting for file names.
+ * pygnulib/GLImport.py (GLImport.prepare): Remove the str.lower key from
+ the call to sorted().
+
2024-04-01 Paul Eggert <eggert@cs.ucla.edu>
getcwd: port better to buggy file systems
# Determine the final file lists.
main_filelist, tests_filelist = \
self.moduletable.filelist_separately(main_modules, tests_modules)
- filelist = sorted(set(main_filelist + tests_filelist), key=str.lower)
+ filelist = sorted(set(main_filelist + tests_filelist))
if not filelist:
raise GLError(12, None)