cpython: 7a5f8418b4ab (original) (raw)
Mercurial > cpython
changeset 98859:7a5f8418b4ab
Issue #25154: Make the file argument apply to the print function and not str.format call. [#25154]
Brett Cannon brett@python.org | |
---|---|
date | Sun, 25 Oct 2015 17:40:31 -0700 |
parents | 3b552e2811f8 |
children | 21f6c4378846 |
files | Tools/scripts/pyvenv |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-)[+] [-] Tools/scripts/pyvenv 2 |
line wrap: on
line diff
--- a/Tools/scripts/pyvenv +++ b/Tools/scripts/pyvenv @@ -5,7 +5,7 @@ if name == 'main': executable = pathlib.Path(sys.executable or 'python3').name print('WARNING: the pyenv script is deprecated in favour of '
'`{} -m venv`'.format(exeutable, file=sys.stderr))[](#l1.7)
'`{} -m venv`'.format(exeutable), file=sys.stderr)[](#l1.8)