Update PEP453 for Grammar and add --without-pip to PyVenv

This commit is contained in:
Donald Stufft 2013-08-30 11:45:51 -04:00
parent ad3709035e
commit a426e80979
1 changed files with 6 additions and 4 deletions

View File

@ -146,10 +146,10 @@ Pre-installation
================
During the installation of Python from Python.org ``python -m getpip`` should
be executed. Leaving people using the Windows or OSX installers with a working
be executed, leaving people using the Windows or OSX installers with a working
copy of pip once the installation has completed. The exact method of this is
left up to the maintainers of the installers however if the bootstrapping is
optional it should be opt out rather than opt in.
left up to the maintainers of the installers, however if the bootstrapping is
optional it should be opt-out rather than opt-in.
The Windows and OSX installers distributed by Python.org will automatically
attempt to run ``python -m getpip`` by default however the ``make install``
@ -178,7 +178,9 @@ pip bootstrap by default inside of the new environment while creating it. This
will allow people the same convenience inside of the virtual environment as
this PEP provides outside of it as well as bringing the ``venv`` module closer
to feature parity with the external ``virtualenv`` package making it a more
suitable replacement.
suitable replacement. In the case that a user does not wish to have pip
bootstrapped into their virtual environment a ``--without-pip`` option will be
added.
Recommendations for Downstream Distributors