We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ab9774f commit a45ebeaCopy full SHA for a45ebea
test/test_other.py
@@ -10106,7 +10106,7 @@ def test_standalone_system_headers(self, prefix):
10106
# Process files depending on first char of the file in different test cases for parallelization, though
10107
# special case SDL_ prefix to parallelize better.
10108
first_char = (header[4] if header.startswith('SDL_') else header[0]).lower()
10109
- if first_char not in prefix or (prefix == '*' and ord(first_char) >= ord('a') and ord(first_char) <= ord('z')):
+ if first_char not in prefix or (prefix == '*' and first_char.isalpha()):
10110
continue
10111
10112
print('header: ' + header)
0 commit comments