Thanks to visit codestin.com Credit goes to github.com
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 dc2552d commit aeafaf4Copy full SHA for aeafaf4
1 file changed
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