diff options
| author | Serhiy Storchaka <storchaka@gmail.com> | 2015-11-02 14:10:23 +0200 |
|---|---|---|
| committer | Serhiy Storchaka <storchaka@gmail.com> | 2015-11-02 14:10:23 +0200 |
| commit | d65c9496da3485ac077fa8fd374b061afdd3605e (patch) | |
| tree | 70d446dd505e744bcdf7638e6dc31fde8d4d9310 /Doc/howto | |
| parent | 7462b64911f1e2df2de2285ddbf8b156b5cdc418 (diff) | |
| download | cpython-git-d65c9496da3485ac077fa8fd374b061afdd3605e.tar.gz | |
Issue #25523: Further a-to-an corrections.
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 f018b0e893..530f34b88f 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)``. |
