whatsnew: reformat pdb entry to match style of most other module entries.
authorR David Murray <rdmurray@bitdance.com>
Wed, 26 Feb 2014 17:52:51 +0000 (12:52 -0500)
committerR David Murray <rdmurray@bitdance.com>
Wed, 26 Feb 2014 17:52:51 +0000 (12:52 -0500)
That is: one paragraph per feature.

Doc/whatsnew/3.4.rst

index fc9ca1390580c6f838dafd7e0269d95014295646..f9e5b2a59359e0f6e2578cef8fe0405f9121545c 100644 (file)
@@ -998,16 +998,14 @@ pdb
 ---
 
 The ``print`` command has been removed from :mod:`pdb`, restoring access to the
-``print`` function.
-
-Rationale: Python2's ``pdb`` did not have a ``print`` command; instead,
-entering ``print`` executed the ``print`` statement.  In Python3 ``print`` was
-mistakenly made an alias for the pdb :pdbcmd:`p` command.  ``p``, however,
-prints the ``repr`` of its argument, not the ``str`` like the Python2 ``print``
-command did.  Worse, the Python3 ``pdb print`` command shadowed the Python3
-``print`` function, making it inaccessible at the ``pdb`` prompt.
-
-(Contributed by Connor Osborn in :issue:`18764`.)
+Python :func:`print` function from the pdb command line.  Python2's ``pdb`` did
+not have a ``print`` command; instead, entering ``print`` executed the
+``print`` statement.  In Python3 ``print`` was mistakenly made an alias for the
+pdb :pdbcmd:`p` command.  ``p``, however, prints the ``repr`` of its argument,
+not the ``str`` like the Python2 ``print`` command did.  Worse, the Python3
+``pdb print`` command shadowed the Python3 ``print`` function, making it
+inaccessible at the ``pdb`` prompt.  (Contributed by Connor Osborn in
+:issue:`18764`.)
 
 
 .. _whatsnew-protocol-4: