summaryrefslogtreecommitdiffstats
path: root/Doc/whatsnew/3.4.rst
diff options
context:
space:
mode:
authorNed Deily <nad@python.org>2016-07-11 18:21:58 (GMT)
committerNed Deily <nad@python.org>2016-07-11 18:21:58 (GMT)
commit538f5c47868b0674b1a90a9765c94a13c701f23d (patch)
tree2760793d00ac6d1fd737025e46c1a543668b8de1 /Doc/whatsnew/3.4.rst
parent702f4f5d6fdb1a49222bb1e70866717f34c3b847 (diff)
downloadcpython-538f5c47868b0674b1a90a9765c94a13c701f23d.zip
cpython-538f5c47868b0674b1a90a9765c94a13c701f23d.tar.gz
cpython-538f5c47868b0674b1a90a9765c94a13c701f23d.tar.bz2
Issue #27285: Cleanup "suspicious" warnings.
Diffstat (limited to 'Doc/whatsnew/3.4.rst')
-rw-r--r--Doc/whatsnew/3.4.rst8
1 files changed, 4 insertions, 4 deletions
diff --git a/Doc/whatsnew/3.4.rst b/Doc/whatsnew/3.4.rst
index 1e5c9d1..2a23cbc 100644
--- a/Doc/whatsnew/3.4.rst
+++ b/Doc/whatsnew/3.4.rst
@@ -197,7 +197,7 @@ will also be installed. On other platforms, the system wide unversioned
``pip`` command typically refers to the separately installed Python 2
version.
-The :ref:`pyvenv <scripts-pyvenv>` command line utility and the :mod:`venv`
+The ``pyvenv`` command line utility and the :mod:`venv`
module make use of the :mod:`ensurepip` module to make ``pip`` readily
available in virtual environments. When using the command line utility,
``pip`` is installed by default, while when using the :mod:`venv` module
@@ -1989,11 +1989,11 @@ Other Improvements
Stinner using his :pep:`445`-based ``pyfailmalloc`` tool (:issue:`18408`,
:issue:`18520`).
-* The :ref:`pyvenv <scripts-pyvenv>` command now accepts a ``--copies`` option
+* The ``pyvenv`` command now accepts a ``--copies`` option
to use copies rather than symlinks even on systems where symlinks are the
default. (Contributed by Vinay Sajip in :issue:`18807`.)
-* The :ref:`pyvenv <scripts-pyvenv>` command also accepts a ``--without-pip``
+* The ``pyvenv`` command also accepts a ``--without-pip``
option to suppress the otherwise-automatic bootstrapping of pip into
the virtual environment. (Contributed by Nick Coghlan in :issue:`19552`
as part of the :pep:`453` implementation.)
@@ -2459,7 +2459,7 @@ Changes in the Python API
stream in :mod:`~io.TextIOWrapper` to use its *newline* argument
(:issue:`15204`).
-* If you use :ref:`pyvenv <scripts-pyvenv>` in a script and desire that pip
+* If you use ``pyvenv`` in a script and desire that pip
*not* be installed, you must add ``--without-pip`` to your command
invocation.