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.
__pycache__
1 parent ddf800c commit 26321adCopy full SHA for 26321ad
Lib/test/test_tools/test_makefile.py
@@ -52,7 +52,10 @@ def test_makefile_test_folders(self):
52
if not dirs and not files:
53
continue
54
# Skip dirs with hidden-only files:
55
- if files and all(filename.startswith('.') for filename in files):
+ if files and all(
56
+ filename.startswith('.') or filename == '__pycache__'
57
+ for filename in files
58
+ ):
59
60
61
relpath = os.path.relpath(dirpath, support.STDLIB_DIR)
0 commit comments