diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2015-11-02 12:44:29 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2015-11-02 12:44:29 (GMT) |
commit | 4a7c03aab455613e9ba898b7cae73459fadd57ac (patch) | |
tree | d09ea360154f3e045e2f5a76a172b0e6417fc957 /Doc/howto | |
parent | df8f5b56c9dc5e950f39ed0221212256a39c1835 (diff) | |
parent | f51d715845dfede2803ef7a2e6ea4e2a03f18486 (diff) | |
download | cpython-4a7c03aab455613e9ba898b7cae73459fadd57ac.zip cpython-4a7c03aab455613e9ba898b7cae73459fadd57ac.tar.gz cpython-4a7c03aab455613e9ba898b7cae73459fadd57ac.tar.bz2 |
Issue #25523: Merge a-to-an corrections from 3.5.
Diffstat (limited to 'Doc/howto')
-rw-r--r-- | Doc/howto/descriptor.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/howto/descriptor.rst b/Doc/howto/descriptor.rst index f018b0e..530f34b 100644 --- a/Doc/howto/descriptor.rst +++ b/Doc/howto/descriptor.rst @@ -319,7 +319,7 @@ Non-data descriptors provide a simple mechanism for variations on the usual patterns of binding functions into methods. To recap, functions have a :meth:`__get__` method so that they can be converted -to a method when accessed as attributes. The non-data descriptor transforms a +to a method when accessed as attributes. The non-data descriptor transforms an ``obj.f(*args)`` call into ``f(obj, *args)``. Calling ``klass.f(*args)`` becomes ``f(*args)``. |