Issue #25523: Merge a-to-an corrections from 3.5.

This commit is contained in:
Serhiy Storchaka 2015-11-02 14:44:29 +02:00
commit 4a7c03aab4
36 changed files with 43 additions and 43 deletions

View file

@ -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)``.