Skip to content

Commit 6a23efd

Browse files
committed
check and remove osp comments
1 parent 294a732 commit 6a23efd

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

test.py

-4
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@
1414

1515
import sys
1616
import os
17-
# import os.path as osp
1817
from pathlib import Path
1918
import re
2019

@@ -26,11 +25,8 @@ def test_python_packages(pyver):
2625
"""Check if all Python packages are supported by WinPython"""
2726
basedir = utils.get_basedir(pyver)
2827
for suffix in ('src', 'win32', 'win-amd64'):
29-
# dirname = osp.join(basedir, 'packages.%s' % suffix)
3028
dirname = str(Path(basedir) / f'packages.{suffix}')
3129
for name in os.listdir(dirname):
32-
# if osp.isfile(osp.join(dirname, name)) \
33-
# if osp.isfile(str(Path(dirname) / name)) \
3430
if (Path(dirname) / name).is_file() \
3531
and not re.match(r'python-([0-9\.]*)(\.amd64)?\.msi', name):
3632
try:

0 commit comments

Comments
 (0)