diff options
author | Andrew Kuchling <amk@amk.ca> | 2014-01-31 17:17:53 (GMT) |
---|---|---|
committer | Andrew Kuchling <amk@amk.ca> | 2014-01-31 17:17:53 (GMT) |
commit | fe0f0b050d3224de6c767bcd42d70f42800b0967 (patch) | |
tree | a8a0024de721b3c5a44c975c8978c2b7c39fecab | |
parent | 1088d988996dd8c63a73a5139173627320d74405 (diff) | |
download | cpython-fe0f0b050d3224de6c767bcd42d70f42800b0967.zip cpython-fe0f0b050d3224de6c767bcd42d70f42800b0967.tar.gz cpython-fe0f0b050d3224de6c767bcd42d70f42800b0967.tar.bz2 |
Typo fix
-rw-r--r-- | Doc/whatsnew/3.4.rst | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Doc/whatsnew/3.4.rst b/Doc/whatsnew/3.4.rst index d7a04f6..c9c0da7 100644 --- a/Doc/whatsnew/3.4.rst +++ b/Doc/whatsnew/3.4.rst @@ -678,7 +678,7 @@ handling). functools --------- -The new :func:`~functools.partialmethod` descriptor bring partial argument +The new :func:`~functools.partialmethod` descriptor brings partial argument application to descriptors, just as :func:`~functools.partial` provides for normal callables. The new descriptor also makes it easier to get arbitrary callables (including :func:`~functools.partial` instances) @@ -1624,4 +1624,3 @@ Changes in the C API * The ``f_tstate`` (thread state) field of the :c:type:`PyFrameObject` structure has been removed to fix a bug: see :issue:`14432` for the rationale. - |