[issue35250] Minor parameter documentation mismatch for turtle

2018-12-05 Thread Serhiy Storchaka
Change by Serhiy Storchaka : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___

[issue35250] Minor parameter documentation mismatch for turtle

2018-12-05 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: New changeset abe74feb912292aa4df4e70d39e85d0bcd425436 by Serhiy Storchaka in branch '2.7': [2.7] bpo-35250: Correct argument name "num" -> "btn" in turtle docs. (GH-10565). (GH-10943)

[issue35250] Minor parameter documentation mismatch for turtle

2018-12-05 Thread Serhiy Storchaka
Change by Serhiy Storchaka : -- pull_requests: +10195 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue35250] Minor parameter documentation mismatch for turtle

2018-11-16 Thread Éric Araujo
Éric Araujo added the comment: There is an HTML escaping problem in the PR list! -- nosy: +eric.araujo, ezio.melotti ___ Python tracker ___

[issue35250] Minor parameter documentation mismatch for turtle

2018-11-16 Thread miss-islington
miss-islington added the comment: New changeset 8856246c41b0663bfe8d3af7d52a7c337e25572d by Miss Islington (bot) in branch '3.6': bpo-35250: Correct argument name "num" -> "btn" in turtle docs. (GH-10565) https://github.com/python/cpython/commit/8856246c41b0663bfe8d3af7d52a7c337e25572d

[issue35250] Minor parameter documentation mismatch for turtle

2018-11-16 Thread miss-islington
miss-islington added the comment: New changeset 0461c3b635d53e8e75145695803a2fca288a1689 by Miss Islington (bot) in branch '3.7': bpo-35250: Correct argument name "num" -> "btn" in turtle docs. (GH-10565) https://github.com/python/cpython/commit/0461c3b635d53e8e75145695803a2fca288a1689

[issue35250] Minor parameter documentation mismatch for turtle

2018-11-16 Thread miss-islington
Change by miss-islington : -- pull_requests: +9819 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue35250] Minor parameter documentation mismatch for turtle

2018-11-16 Thread miss-islington
Change by miss-islington : -- pull_requests: +9820 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue35250] Minor parameter documentation mismatch for turtle

2018-11-16 Thread శ్రీనివాస్ రెడ్డి తాటిపర్తి
Change by Srinivas Reddy Thatiparthy(శ్రీనివాస్ రెడ్డి తాటిపర్తి) : -- keywords: +patch pull_requests: +9814 stage: -> patch review ___ Python tracker ___

[issue35250] Minor parameter documentation mismatch for turtle

2018-11-15 Thread Windson Yang
Windson Yang added the comment: Yes, you are right. A quick fix would change 'num' to 'btn' in parameters in https://docs.python.org/3.3/library/turtle.html?highlight=turtle#turtle.onclick. I think they are the same thing. Do you want to create a patch? -- nosy: +Windson Yang

[issue35250] Minor parameter documentation mismatch for turtle

2018-11-14 Thread Shane
New submission from Shane : I noticed a slight mismatch in the parameter documentation for one of turtle's functions. onclick() accepts the parameters (fun, btn, add), but the documentation describes the parameters (fun, num, add). A minor issue, to be sure, but I wanted to point it out