Karthikeyan Singaravelan <tir.kar...@gmail.com> 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.

[0] https://docs.python.org/3/library/collections.html#collections.deque.rotate

    Rotate the deque n steps to the right. If n is negative, rotate to the left.

    When the deque is not empty, rotating one step to the right is equivalent 
to d.appendleft(d.pop()), and rotating one step to the left is equivalent to 
d.append(d.popleft()).

----------
nosy: +xtreak

_______________________________________
Python tracker <rep...@bugs.python.org>
<https://bugs.python.org/issue36830>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to