[issue43698] Use syntactically correct examples on abc package page

2022-01-26 Thread miss-islington
miss-islington added the comment: New changeset 49971b2d1890c15eeec2d83ea3e8d178f266c4f9 by Miss Islington (bot) in branch '3.9': bpo-43698: do not use `...` as argument name in docs (GH-30502) https://github.com/python/cpython/commit/49971b2d1890c15eeec2d83ea3e8d178f266c4f9 -- ___

[issue43698] Use syntactically correct examples on abc package page

2022-01-26 Thread miss-islington
miss-islington added the comment: New changeset a57ec7a4feaf24f470a9d1e5b1b3f2cb1b062af7 by Miss Islington (bot) in branch '3.10': bpo-43698: do not use `...` as argument name in docs (GH-30502) https://github.com/python/cpython/commit/a57ec7a4feaf24f470a9d1e5b1b3f2cb1b062af7 -- __

[issue43698] Use syntactically correct examples on abc package page

2022-01-26 Thread miss-islington
Change by miss-islington : -- pull_requests: +29097 pull_request: https://github.com/python/cpython/pull/30918 ___ Python tracker ___ __

[issue43698] Use syntactically correct examples on abc package page

2022-01-26 Thread miss-islington
Change by miss-islington : -- nosy: +miss-islington nosy_count: 4.0 -> 5.0 pull_requests: +29096 pull_request: https://github.com/python/cpython/pull/30917 ___ Python tracker _

[issue43698] Use syntactically correct examples on abc package page

2022-01-26 Thread Dong-hee Na
Dong-hee Na added the comment: New changeset b9d8980d89bfaa4bf16d60f0488adcc9d2cbf5ef by Nikita Sobolev in branch 'main': bpo-43698: do not use `...` as argument name in docs (GH-30502) https://github.com/python/cpython/commit/b9d8980d89bfaa4bf16d60f0488adcc9d2cbf5ef -- nosy: +coron

[issue43698] Use syntactically correct examples on abc package page

2022-01-09 Thread Alex Waygood
Change by Alex Waygood : -- stage: -> patch review type: compile error -> behavior ___ Python tracker ___ ___ Python-bugs-list mail

[issue43698] Use syntactically correct examples on abc package page

2022-01-09 Thread Nikita Sobolev
Nikita Sobolev added the comment: Thank you, I fully agree that this can be improved. Please, take a look at https://github.com/python/cpython/pull/30502 I will apprecaite your review! -- stage: patch review -> ___ Python tracker

[issue43698] Use syntactically correct examples on abc package page

2022-01-09 Thread Nikita Sobolev
Change by Nikita Sobolev : -- keywords: +patch nosy: +sobolevn nosy_count: 2.0 -> 3.0 pull_requests: +28708 stage: -> patch review pull_request: https://github.com/python/cpython/pull/30502 ___ Python tracker __

[issue43698] Use syntactically correct examples on abc package page

2021-04-01 Thread Vladimir Ryabtsev
New submission from Vladimir Ryabtsev : There are code snippets on the package's page (https://docs.python.org/3.10/library/abc.html) like this: class C(ABC): @classmethod @abstractmethod def my_abstract_classmethod(cls, ...): ... Here, the author probably wanted to demons