[issue40471] Grammar typo in issubclass docstring

2021-06-24 Thread Irit Katriel
Change by Irit Katriel : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed versions: -Python 3.7, Python 3.8, Python 3.9 ___ Python tracker ___ _

[issue40471] Grammar typo in issubclass docstring

2020-09-27 Thread Irit Katriel
Irit Katriel added the comment: Should this PR be backported? Otherwise this issue can be closed. -- nosy: +iritkatriel ___ Python tracker ___

[issue40471] Grammar typo in issubclass docstring

2020-06-03 Thread miss-islington
miss-islington added the comment: New changeset df773f8c5454acebe08c31e7308597fa5a8bf5df by Alex Povel in branch 'master': bpo-40471: Fix grammar typo in 'issubclass' docstring (GH-19847) https://github.com/python/cpython/commit/df773f8c5454acebe08c31e7308597fa5a8bf5df -- nosy: +mis

[issue40471] Grammar typo in issubclass docstring

2020-06-03 Thread Senthil Kumaran
Change by Senthil Kumaran : -- versions: +Python 3.10, Python 3.7, Python 3.8 ___ Python tracker ___ ___ Python-bugs-list mailing li

[issue40471] Grammar typo in issubclass docstring

2020-05-01 Thread alexpovel
alexpovel added the comment: Hi Rémi, thank you very much for the hearty welcome. Your explanations worked perfectly and the PR was created. `make regen-all` created new checksums as well, as intended. I had already signed the CLA, and will now dive into the devguide! Thanks again. ---

[issue40471] Grammar typo in issubclass docstring

2020-05-01 Thread alexpovel
Change by alexpovel : -- keywords: +patch pull_requests: +19165 stage: -> patch review pull_request: https://github.com/python/cpython/pull/19847 ___ Python tracker ___ __

[issue40471] Grammar typo in issubclass docstring

2020-05-01 Thread Rémi Lapeyre
Change by Rémi Lapeyre : -- versions: +Python 3.9 -Python 3.8 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue40471] Grammar typo in issubclass docstring

2020-05-01 Thread Rémi Lapeyre
Rémi Lapeyre added the comment: Hi Alex, thanks for reporting this. A PR will be needed to fix those indeed. Regarding argument clinic, the file you will need to change is Python/bltinmodule.c and you can run `make regen-all` to regenerate the other file. There is more information about this

[issue40471] Grammar typo in issubclass docstring

2020-05-01 Thread alexpovel
New submission from alexpovel : Running `python -c "help(issubclass)"` will output: > Help on built-in function issubclass in module builtins: > > issubclass(cls, class_or_tuple, /) > Return whether 'cls' is a derived from another class or is the same class. > > A tup