This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author eric.smith
Recipients barry, brett.cannon, doko, eric.smith, ezio.melotti, lac, pitrou, python-dev, rpointel, scoder
Date 2015-10-26.07:49:03
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1445845743.92.0.58032599569.issue25154@psf.upfronthosting.co.za>
In-reply-to
Content
There's a typo here in 'executable':

+          '`{} -m venv`'.format(exeutable), file=sys.stderr)

And this could now be:
    print('WARNING: the pyenv script is deprecated in favour of '
          f'`{executable} -m venv`', file=sys.stderr)

!

And since there is no .format() call, you can't accidentally pass it file=.
History
Date User Action Args
2015-10-26 07:49:04eric.smithsetrecipients: + eric.smith, barry, brett.cannon, doko, pitrou, scoder, ezio.melotti, python-dev, rpointel, lac
2015-10-26 07:49:03eric.smithsetmessageid: <1445845743.92.0.58032599569.issue25154@psf.upfronthosting.co.za>
2015-10-26 07:49:03eric.smithlinkissue25154 messages
2015-10-26 07:49:03eric.smithcreate