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

This commit is contained in:
Serhiy Storchaka 2015-11-02 14:39:05 +02:00
commit a84f6c3dd3
34 changed files with 39 additions and 39 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)``.