[Python-checkins] r87298 - python/branches/py3k/Doc/whatsnew/3.2.rst

raymond.hettinger python-checkins at python.org
Thu Dec 16 01:53:05 CET 2010


Author: raymond.hettinger
Date: Thu Dec 16 01:53:05 2010
New Revision: 87298

Log:
Thank you ispell.


Modified:
   python/branches/py3k/Doc/whatsnew/3.2.rst

Modified: python/branches/py3k/Doc/whatsnew/3.2.rst
==============================================================================
--- python/branches/py3k/Doc/whatsnew/3.2.rst	(original)
+++ python/branches/py3k/Doc/whatsnew/3.2.rst	Thu Dec 16 01:53:05 2010
@@ -148,7 +148,7 @@
     subparsers = parser.add_subparsers()
 
     parser_l = subparsers.add_parser('launch', help='Launch Control')   # first subgroup
-    parser_l.add_argument('-m', '--missles', action='store_true')
+    parser_l.add_argument('-m', '--missiles', action='store_true')
     parser_l.add_argument('-t', '--torpedos', action='store_true')
 
     parser_m = subparsers.add_parser('move', help='Move Vessel')        # second subgroup
@@ -676,7 +676,7 @@
   (Contributed by Raymond Hettinger.)
 
 * To aid in porting programs from Python 2, the :func:`~functools.cmp_to_key`
-  function converts an old-style comparion function to
+  function converts an old-style comparison function to
   modern :term:`key function`:
 
   >>> # locale-aware sort order
@@ -866,7 +866,7 @@
 to either a decimal or rational representation, it makes sense to add them to
 the constructor and to support mixed-type comparisons.
 
-* The :class:`decimal.Decimal` contructor now accepts :class:`float` objects
+* The :class:`decimal.Decimal` constructor now accepts :class:`float` objects
   directly so there in no longer a need to use the :meth:`~decimal.Decimal.from_float`
   method (:issue:`8257`).
 
@@ -1506,7 +1506,7 @@
   list.  It is equivalent to C99 *va_copy* but available on all python platforms
   (:issue:`2443`).
 
-* A new C API function :c:func:`PySys_SetArgvEx` allows an embeddered
+* A new C API function :c:func:`PySys_SetArgvEx` allows an embedded
   interpreter to set sys.argv without also modifying :attr:`sys.path`
   (:issue:`5753`).
 


More information about the Python-checkins mailing list