We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1303c56 commit 64742dbCopy full SHA for 64742db
mypy/test/testcmdline.py
@@ -59,7 +59,7 @@ def test_python_cmdline(testcase: DataDrivenTestCase, step: int) -> None:
59
extra_path = os.path.join(os.path.abspath(test_temp_dir), 'pypath')
60
env['PYTHONPATH'] = PREFIX
61
if os.path.isdir(extra_path):
62
- env['PYTHONPATH'] += ':' + extra_path
+ env['PYTHONPATH'] += os.pathsep + extra_path
63
process = subprocess.Popen(fixed + args,
64
stdout=subprocess.PIPE,
65
stderr=subprocess.PIPE,
0 commit comments