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