[issue38255] Replace "method" with "attribute" in the description of super()

2019-09-25 Thread Raymond Hettinger
Raymond Hettinger added the comment: New changeset 3b5e9241142d6b7c22059115c0e68a8912753818 by Raymond Hettinger (Miss Islington (bot)) in branch '3.7': bpo-38255: super() can search attributes as well as methods (GH-16368) (GH-16392)

[issue38255] Replace "method" with "attribute" in the description of super()

2019-09-25 Thread Raymond Hettinger
Raymond Hettinger added the comment: New changeset 7444a5a402bbac4268b95958a9578a9e3dae33e0 by Raymond Hettinger (Miss Islington (bot)) in branch '3.8': bpo-38255: super() can search attributes as well as methods (GH-16368) (GH-16391)

[issue38255] Replace "method" with "attribute" in the description of super()

2019-09-25 Thread miss-islington
Change by miss-islington : -- pull_requests: +15973 pull_request: https://github.com/python/cpython/pull/16391 ___ Python tracker ___

[issue38255] Replace "method" with "attribute" in the description of super()

2019-09-25 Thread Raymond Hettinger
Raymond Hettinger added the comment: New changeset 15ccc4fac09b866d61b069c6c136aabfe4bac09c by Raymond Hettinger in branch 'master': bpo-38255: super() can search attributes as well as methods (GH-16368) https://github.com/python/cpython/commit/15ccc4fac09b866d61b069c6c136aabfe4bac09c

[issue38255] Replace "method" with "attribute" in the description of super()

2019-09-25 Thread miss-islington
Change by miss-islington : -- pull_requests: +15974 pull_request: https://github.com/python/cpython/pull/16392 ___ Python tracker ___

[issue38255] Replace "method" with "attribute" in the description of super()

2019-09-25 Thread Géry
Géry added the comment: Alright, I am fine with @rhettinger's alternative PR too. I am closing this. -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker

[issue38255] Replace "method" with "attribute" in the description of super()

2019-09-25 Thread Carol Willing
Carol Willing added the comment: @maggyero Thanks for the PR and working to improve the docs. For this particular issue, I prefer PR 16368 for its brevity and common use case. I'm recommending that it be merged. -- nosy: +willingc ___ Python

[issue38255] Replace "method" with "attribute" in the description of super()

2019-09-24 Thread Emmanuel Arias
Change by Emmanuel Arias : -- nosy: +eamanu ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue38255] Replace "method" with "attribute" in the description of super()

2019-09-24 Thread Josh Rosenberg
Josh Rosenberg added the comment: I prefer rhettinger's PR to your proposed PR; while super() may be useful for things other than methods, the 99% use case is methods, and deemphasizing that is a bad idea. rhettinger's PR adds a note about other use cases without interfering with super()'s

[issue38255] Replace "method" with "attribute" in the description of super()

2019-09-24 Thread Raymond Hettinger
Change by Raymond Hettinger : -- keywords: +patch pull_requests: +15948 stage: -> patch review pull_request: https://github.com/python/cpython/pull/16368 ___ Python tracker

[issue38255] Replace "method" with "attribute" in the description of super()

2019-09-23 Thread Raymond Hettinger
Change by Raymond Hettinger : -- assignee: docs@python -> rhettinger ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue38255] Replace "method" with "attribute" in the description of super()

2019-09-23 Thread Fred L. Drake, Jr.
Change by Fred L. Drake, Jr. : -- versions: +Python 3.9 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue38255] Replace "method" with "attribute" in the description of super()

2019-09-23 Thread Fred L. Drake, Jr.
Change by Fred L. Drake, Jr. : -- versions: +Python 3.8 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue38255] Replace "method" with "attribute" in the description of super()

2019-09-23 Thread Géry
New submission from Géry : The description of `super()` uses the word "method" instead of the more general word "attribute". > super([type[, object-or-type]]) > Return a proxy object that delegates method calls to a parent or sibling > class of *type*. This is useful for accessing inherited