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.
1 parent c715439 commit d4bbbd0Copy full SHA for d4bbbd0
Lib/test/test_venv.py
@@ -153,8 +153,7 @@ def _check_output_of_default_create(self):
153
self.assertIn('home = %s' % path, data)
154
self.assertIn('executable = %s' %
155
os.path.realpath(sys.executable), data)
156
- copies = '' if os.name=='nt' else ' --copies'
157
- cmd = (f'command = {sys.executable} -m venv{copies} --without-pip '
+ cmd = (f'command = {sys.executable} -m venv --without-pip '
158
f'--without-scm-ignore-files {self.env_dir}')
159
self.assertIn(cmd, data)
160
fn = self.get_env_file(self.bindir, self.exe)
0 commit comments