diff options
author | Raymond Hettinger <python@rcn.com> | 2010-12-06 04:31:40 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2010-12-06 04:31:40 (GMT) |
commit | b87ba269e0ac92a61d0c7948e385837589fb3a90 (patch) | |
tree | 6bf380a1e78a6da024eeac29a478ca6d1e6ca4c7 | |
parent | d53ee5dd12388b9c53ae2f005583a9cd97055b4e (diff) | |
download | cpython-b87ba269e0ac92a61d0c7948e385837589fb3a90.zip cpython-b87ba269e0ac92a61d0c7948e385837589fb3a90.tar.gz cpython-b87ba269e0ac92a61d0c7948e385837589fb3a90.tar.bz2 |
Typo fixups.
-rw-r--r-- | Doc/whatsnew/3.2.rst | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Doc/whatsnew/3.2.rst b/Doc/whatsnew/3.2.rst index 8ae5c00..5d9e2f6 100644 --- a/Doc/whatsnew/3.2.rst +++ b/Doc/whatsnew/3.2.rst @@ -442,8 +442,8 @@ Some smaller changes made to the core Python language are: in :issue:`2690`.) * The :func:`callable` builtin function from Py2.x was resurrected. It provides - a concise, readable alternative to using an :term:`abstract base class` to in - an expression like ``isinstance(x, collections.Callable)``. + a concise, readable alternative to using an :term:`abstract base class` in an + expression like ``isinstance(x, collections.Callable)``. (See :issue:`10518`.) @@ -478,7 +478,7 @@ New, Improved, and Deprecated Modules >>> get_phone_number.cache_clear() (Contributed by Raymond Hettinger and incorporating design ideas from - Jim Baker, Miki Tebeka, and Nick Coglan.) + Jim Baker, Miki Tebeka, and Nick Coghlan.) * The :func:`functools.wraps` decorator now adds a :attr:`__wrapped__` attribute pointing to the original callable function. This allows wrapped functions to |