[issue34085] doc Improve wording on classmethod/staticmethod

2019-03-25 Thread Cheryl Sabella
Change by Cheryl Sabella : -- versions: -Python 3.6 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://

[issue34085] doc Improve wording on classmethod/staticmethod

2019-03-25 Thread Cheryl Sabella
Cheryl Sabella added the comment: Thanks for the report and the PR, Andrés! -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker _

[issue34085] doc Improve wording on classmethod/staticmethod

2019-03-25 Thread miss-islington
miss-islington added the comment: New changeset b23b08623a46cef841038ee32948020692ef1b35 by Miss Islington (bot) in branch '3.7': bpo-34085: Improve wording on classmethod/staticmethod (GH-8228) https://github.com/python/cpython/commit/b23b08623a46cef841038ee32948020692ef1b35 -- __

[issue34085] doc Improve wording on classmethod/staticmethod

2019-03-25 Thread miss-islington
miss-islington added the comment: New changeset bd96393cda54044d81054225dcfc1b26374589a8 by Miss Islington (bot) in branch '2.7': bpo-34085: Improve wording on classmethod/staticmethod (GH-8228) https://github.com/python/cpython/commit/bd96393cda54044d81054225dcfc1b26374589a8 -- nos

[issue34085] doc Improve wording on classmethod/staticmethod

2019-03-25 Thread miss-islington
Change by miss-islington : -- pull_requests: +12493 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://m

[issue34085] doc Improve wording on classmethod/staticmethod

2019-03-25 Thread Cheryl Sabella
Cheryl Sabella added the comment: New changeset 548cb6060ab9d5a66931ea2be4da08c2c72c9176 by Cheryl Sabella (Andre Delfino) in branch 'master': bpo-34085: Improve wording on classmethod/staticmethod (#8228) https://github.com/python/cpython/commit/548cb6060ab9d5a66931ea2be4da08c2c72c9176 ---

[issue34085] doc Improve wording on classmethod/staticmethod

2019-03-25 Thread miss-islington
Change by miss-islington : -- pull_requests: +12494 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://m

[issue34085] doc Improve wording on classmethod/staticmethod

2018-07-10 Thread Andrés Delfino
Change by Andrés Delfino : -- keywords: +patch pull_requests: +7766 stage: -> patch review ___ Python tracker ___ ___ Python-bugs-li

[issue34085] doc Improve wording on classmethod/staticmethod

2018-07-10 Thread Andrés Delfino
New submission from Andrés Delfino : 1. The classmethod definition reads: """ The @classmethod form is a function decorator – see the description of function definitions in Function definitions for details. It can be called either on the class (such as C.f()) or on an instance (such as C().f(