[issue36830] Typo in collections.deque

2019-05-07 Thread Julien Palard
Julien Palard added the comment: I reopened the issue on the ja tracker: https://github.com/python/python-docs-ja/issues/20 and I'm closing it here. Thanks a lot keroru for reporting! -- stage: -> resolved status: pending -> closed ___ Python tra

[issue36830] Typo in collections.deque

2019-05-07 Thread Stéphane Wirtel
Stéphane Wirtel added the comment: Hi @keroru, This is issue is related to the Japanese translation, not to the official documentation. Please, try to contact the translators. I am adding Julien, maybe he has the contact of the translators. -- nosy: +matrixise, mdk resolution: ->

[issue36830] Typo in collections.deque

2019-05-07 Thread Karthikeyan Singaravelan
Karthikeyan Singaravelan added the comment: Thank you for the report. English translation has the following text and I guess you are right at [0] . The tracker deals with English translation. Please consider reporting this to https://github.com/python/python-docs-ja which also accepts PR. [

[issue36830] Typo in collections.deque

2019-05-07 Thread keroru
New submission from keroru : https://docs.python.org/ja/3/library/collections.html#collections.deque has a typo in description of "rotate(n=1)" in Japanese. I suppose that "d.appendleft(d.popleft())" should be "d.append(d.popleft())". Thank you! -- assignee: docs@python components: Do